MultiAgentDecisionProcess  Release 0.2.1
ObservationDiscrete.h
Go to the documentation of this file.
1 
28 /* Only include this header file once. */
29 #ifndef _OBSERVATIONDISCRETE_H_
30 #define _OBSERVATIONDISCRETE_H_ 1
31 
32 /* the include directives */
33 #include <iostream>
34 #include <string>
35 
36 #include "Globals.h"
37 #include "Observation.h"
38 #include "DiscreteEntity.h"
39 
41 
45  public DiscreteEntity
46 {
47  private:
48 
49  protected:
50 
51  public:
52  // Constructor, destructor and copy assignment.
54  ObservationDiscrete(Index i, std::string name=std::string("undefined"),
55  std::string description=std::string("undefined")) :
56  Observation(name, description),
57  DiscreteEntity(i){};
58 
59 };
60 
61 #endif /* !_OBSERVATIONDISCRETE_H_ */
62 
63 // Local Variables: ***
64 // mode:c++ ***
65 // End: ***