1234567891011121314151617181920212223 |
- #ifndef __CALLBACKHEAD_530_H__
- #define __CALLBACKHEAD_530_H__
- #include "Structure.h"
- using namespace CareRay;
- class ICallback
- {
- public:
- ICallback(){};
- virtual ~ICallback(){};
- void virtual Process(int nEventID, CR_Event* pEventParam)
- {
- //Customzed
- }
- protected:
- private:
- };
- #endif
|