My Project
 All Classes Files Functions Variables
SimpleDistribution.h
Go to the documentation of this file.
1 #ifndef SIMPLEDISTRIBUTION_H
2 #define SIMPLEDISTRIBUTION_H
3 
4 #include "DistributionBehavior.h"
5 #include "Points.h"
6 
7 // This is a class for the simple method of distribution
9 {
10 public:
13  void distribute();
14 
15 private:
16  Points* m_Points;
17 };
18 #endif