//*********************************************** // Microsoft Confidential // Copyright (c) Microsoft Corporation 2000 // All rights reserved // // WMI interface class // // History: 10-Mar-00 SitaramR Created // //************************************************************* #include "windows.h" #include "ole2.h" #include "rsopdbg.h" #include #include class CLocator { public: CLocator() {} IWbemLocator * GetWbemLocator(); IWbemServices * GetPolicyConnection(); IWbemServices * GetUserConnection(); IWbemServices * GetMachConnection(); private: XInterface m_xpWbemLocator; XInterface m_xpPolicyConnection; XInterface m_xpUserConnection; XInterface m_xpMachConnection; };