Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- class SequencePrinter
- {
- public:
- SequencePrinter(SequenceGenerator & sequence) :
- m_sequence(sequence) {}
- void changeSequence(const SequenceGenerator & sequence)
- {
- this->m_sequence = sequence;
- }
- private:
- SequenceGenerator & m_sequence;
- }
Add Comment
Please, Sign In to add comment