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
30 lines
790 B
// PETreeView.h : Declaration of the CPersonExplorerTreeView
|
|
|
|
#ifndef __PERSONEXPLORERTREEVIEW_H_
|
|
#define __PERSONEXPLORERTREEVIEW_H_
|
|
|
|
#include "resource.h" // main symbols
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPersonExplorerTreeView
|
|
class ATL_NO_VTABLE CPersonExplorerTreeView :
|
|
public CComObjectRootEx<CComMultiThreadModel>,
|
|
public CComCoClass<CPersonExplorerTreeView, &CLSID_PersonExplorerTreeView>,
|
|
public IPersonExplorerTreeView
|
|
{
|
|
public:
|
|
CPersonExplorerTreeView()
|
|
{
|
|
}
|
|
|
|
DECLARE_NOT_AGGREGATABLE(CPersonExplorerTreeView)
|
|
|
|
BEGIN_COM_MAP(CPersonExplorerTreeView)
|
|
COM_INTERFACE_ENTRY(IPersonExplorerTreeView)
|
|
END_COM_MAP()
|
|
|
|
// IPersonExplorerTreeView
|
|
public:
|
|
};
|
|
|
|
#endif //__PERSONEXPLORERTREEVIEW_H_
|