MultiAgentDecisionProcess  Release 0.2.1
ParserInterface.h
Go to the documentation of this file.
1 
28 /* Only include this header file once. */
29 #ifndef _PARSERINTERFACE_H_
30 #define _PARSERINTERFACE_H_ 1
31 
32 /* the include directives */
33 #include <iostream>
34 
37 {
38 private:
39 
40 protected:
41 
42 public:
43  // Constructor, destructor and copy assignment.
46 
47  virtual ~ParserInterface(){};
48 
49  virtual void Parse() = 0;
50 
51 };
52 
53 
54 #endif /* !_PARSERINTERFACE_H_ */
55 
56 // Local Variables: ***
57 // mode:c++ ***
58 // End: ***