BcPOC
SF-HRP ASM implementation
D:/bcatch/bcpoc_src/bcpoc/src/sfhrp/SFHRP/inspector_holder.hpp
Go to the documentation of this file.
00001 
00010 #include <string>
00011 #include "i_inspector.hpp"
00012 
00013 #ifndef _INSCPECTOR_HOLDER_H_
00014 #define _INSCPECTOR_HOLDER_H_
00015 
00024 class CInspectorHolder {
00025 
00026 private:
00027 
00028         static IInspector* m_insp;
00029 
00030 public:
00031 
00032         static void
00033         setInspector( IInspector*);
00034 
00035         static void
00036         processEvent( int, std::string);
00037 
00038 
00039 };
00040 
00041 
00042 #endif