Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
868 B

  1. // CfgMntModule.h: interface for the CCfgMntModule class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_CFGMNTMODULE_H__7A5D77AB_1982_11D1_A44C_00C04FB99B01__INCLUDED_)
  5. #define AFX_CFGMNTMODULE_H__7A5D77AB_1982_11D1_A44C_00C04FB99B01__INCLUDED_
  6. #if _MSC_VER >= 1000
  7. #pragma once
  8. #endif // _MSC_VER >= 1000
  9. #include "VerEngine.h"
  10. #include "OperationQueue.h"
  11. #include "DirWatch.h"
  12. #include "SettingsWatch.h"
  13. interface ICfgMntAdmin; // forward declaration
  14. class CCfgMntModule
  15. {
  16. public:
  17. CCfgMntModule();
  18. virtual ~CCfgMntModule();
  19. void ShutDown();
  20. public:
  21. CVerEngine m_VerEngine;
  22. COpQueue m_OpQ;
  23. CWatchFileSys m_WatchFS;
  24. CWatchMD m_WatchMD;
  25. CComPtr<ICfgMntAdmin> m_pICfgMntAdmin;
  26. };
  27. extern CCfgMntModule *g_pCfgMntModule;
  28. #endif // !defined(AFX_CFGMNTMODULE_H__7A5D77AB_1982_11D1_A44C_00C04FB99B01__INCLUDED_)