123456789101112131415161718192021222324252627 |
- #ifndef APP_H
- #define APP_H
- #include "HDB.h"
- #include "license.hxx"
- #include "spa_unlock_result.hxx"
- #include "hoops_license.h"
- #include "ha_bridge.h"
- #include "part_api.hxx"
- #include "spa_unlock_result.hxx"
- #include "kernapi.hxx"
- class App
- {
- protected:
- /*! Pointer to the HOOPS/MVO HDB object associated with this instance of the application */
- HDB* m_pHoopsDB;
- public:
- App();
- public:
- virtual BOOL InitInstance();
- virtual int ExitInstance();
- };
- #endif // APP_H
|