12345678910111213141516171819202122232425 |
- #pragma once
- class IAutoTestServer;
- namespace DIOS::Dev::Detail::MachineryECOM
- {
- class AuotTestLoader
- {
- public:
- AuotTestLoader();
- ~AuotTestLoader();
- public:
- static AuotTestLoader *Instance();
- void Initialize();
- BOOL IsActived();
- IAutoTestServer *GetServerInstance();
- private:
- static AuotTestLoader *m_instance;
- HMODULE m_DllFileHandle;
- IAutoTestServer *m_serverInstance;
- BOOL m_serverActived;
- };
- }
|