MultiAgentDecisionProcess  Release 0.2.1
IndividualHistory.h
Go to the documentation of this file.
1 
28 /* Only include this header file once. */
29 #ifndef _INDIVIDUALHISTORY_H_
30 #define _INDIVIDUALHISTORY_H_ 1
31 
32 /* the include directives */
33 #include <iostream>
34 #include "Globals.h"
35 
36 #include "History.h"
37 
39 class IndividualHistory : public History
40 {
41 private:
42 
43 protected:
44 
47 
48 public:
49  // Constructor, destructor and copy assignment.
51  IndividualHistory(Index agentI) : _m_agentI(agentI){};
53  virtual ~IndividualHistory(){};
54 
55 };
56 
57 
58 #endif /* !_INDIVIDUALHISTORY_H_ */
59 
60 // Local Variables: ***
61 // mode:c++ ***
62 // End: ***