Leaked source code of windows server 2003
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.

30 lines
790 B

  1. // PETreeView.h : Declaration of the CPersonExplorerTreeView
  2. #ifndef __PERSONEXPLORERTREEVIEW_H_
  3. #define __PERSONEXPLORERTREEVIEW_H_
  4. #include "resource.h" // main symbols
  5. /////////////////////////////////////////////////////////////////////////////
  6. // CPersonExplorerTreeView
  7. class ATL_NO_VTABLE CPersonExplorerTreeView :
  8. public CComObjectRootEx<CComMultiThreadModel>,
  9. public CComCoClass<CPersonExplorerTreeView, &CLSID_PersonExplorerTreeView>,
  10. public IPersonExplorerTreeView
  11. {
  12. public:
  13. CPersonExplorerTreeView()
  14. {
  15. }
  16. DECLARE_NOT_AGGREGATABLE(CPersonExplorerTreeView)
  17. BEGIN_COM_MAP(CPersonExplorerTreeView)
  18. COM_INTERFACE_ENTRY(IPersonExplorerTreeView)
  19. END_COM_MAP()
  20. // IPersonExplorerTreeView
  21. public:
  22. };
  23. #endif //__PERSONEXPLORERTREEVIEW_H_