MultiAgentDecisionProcess  Release 0.2.1
Observation.h
Go to the documentation of this file.
1 
28 /* Only include this header file once. */
29 #ifndef _OBSERVATION_H_
30 #define _OBSERVATION_H_ 1
31 
32 /* the include directives */
33 #include <iostream>
34 #include <string>
35 
36 #include "NamedDescribedEntity.h"
37 
40 {
41  private:
42 
43  protected:
44 
45  public:
46  // Constructor, destructor and copy assignment.
48  Observation(std::string name=std::string("undefined"),
49  std::string description=std::string("undefined")) :
50  NamedDescribedEntity(name, description){};
51 
52 };
53 
54 #endif /* !_OBSERVATION_H_ */
55 
56 // Local Variables: ***
57 // mode:c++ ***
58 // End: ***