My Project
 All Classes Files Functions Variables
MethodCollection.h
Go to the documentation of this file.
1 #ifndef METHODCOLLECTION_H
2 #define METHODCOLLECTION_H
3 
4 #include "DistributionBehavior.h"
5 
6 // This class can make all the difference
7 // This is a collection of behavior - utilizing strategy pattern
9 {
10 public:
14  void distribute();
15  void setDisplay();
16  void display();
17 
18 private:
19  DistributionBehavior* m_Distribution;
20  //DisplayBehavior* m_Display;
21 };
22 #endif