#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; }; }