app.h 487 B

123456789101112131415161718192021222324252627
  1. #ifndef APP_H
  2. #define APP_H
  3. #include "HDB.h"
  4. #include "license.hxx"
  5. #include "spa_unlock_result.hxx"
  6. #include "hoops_license.h"
  7. #include "ha_bridge.h"
  8. #include "part_api.hxx"
  9. #include "spa_unlock_result.hxx"
  10. #include "kernapi.hxx"
  11. class App
  12. {
  13. protected:
  14. /*! Pointer to the HOOPS/MVO HDB object associated with this instance of the application */
  15. HDB* m_pHoopsDB;
  16. public:
  17. App();
  18. public:
  19. virtual BOOL InitInstance();
  20. virtual int ExitInstance();
  21. };
  22. #endif // APP_H