ICallback.h 315 B

1234567891011121314151617181920212223
  1. #ifndef __CALLBACKHEAD_530_H__
  2. #define __CALLBACKHEAD_530_H__
  3. #include "Structure.h"
  4. using namespace CareRay;
  5. class ICallback
  6. {
  7. public:
  8. ICallback(){};
  9. virtual ~ICallback(){};
  10. void virtual Process(int nEventID, CR_Event* pEventParam)
  11. {
  12. //Customzed
  13. }
  14. protected:
  15. private:
  16. };
  17. #endif