My Project
Main Page
Classes
Files
File List
File Members
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
8
class
MethodCollection
9
{
10
public
:
11
MethodCollection
();
12
~MethodCollection
();
13
void
setDistributionBehavior
(
DistributionBehavior
*);
14
void
distribute
();
15
void
setDisplay
();
16
void
display
();
17
18
private
:
19
DistributionBehavior
* m_Distribution;
20
//DisplayBehavior* m_Display;
21
};
22
#endif
Generated on Mon Apr 29 2013 21:31:04 for My Project by
1.8.3.1