My Project
 All Classes Files Functions Variables
DistributionBehavior.h
Go to the documentation of this file.
1 #ifndef DISTRIBUTIONBEHAVIOR_H
2 #define DISTRIBUTIONBEHAVIOR_H
3 
4 // Abstract class for the distribution methods
6 {
7 public:
9  virtual ~DistributionBehavior();
10  virtual void distribute() = 0;
11 
12 private:
13 
14 };
15 #endif