BcPOC
SF-HRP ASM implementation
D:/bcatch/bcpoc_src/bcpoc/src/sfhrp/SFHRP/i_inspector.hpp
Go to the documentation of this file.
00001 #ifndef _I_INSPECTOR_
00002 #define _I_INSPECTOR_
00003 
00004 #include <string>
00005 #include <vector>
00006 
00011 enum {
00012         COND_ACT,
00013         COND_DEACT,
00014         ACTION_SEL,
00015         RULESUCC_SEL,
00016         RULEFAIL_SEL,
00017 
00018         LAST
00019 };
00020 
00025 class IInspector {
00026 public:
00027 
00028 
00033         virtual void
00034         processEvent(int, std::string) = 0;
00035 
00036 };
00037 
00038 #endif