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