62 lines
1.4 KiB
C++
62 lines
1.4 KiB
C++
// IADTrVw.cpp : implementation file
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
#include "StdAfx.h"
|
|
|
|
#include "IADTrVw.hpp"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// IAD_TreeView
|
|
|
|
IMPLEMENT_DYNCREATE(IAD_TreeView, CTreeView)
|
|
|
|
BEGIN_MESSAGE_MAP(IAD_TreeView, CTreeView)
|
|
//{{AFX_MSG_MAP(IAD_TreeView)
|
|
// NOTE - the ClassWizard will add and remove mapping macros here.
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
|
|
//***************************************************************************
|
|
IAD_TreeView::IAD_TreeView()
|
|
{
|
|
}
|
|
|
|
//***************************************************************************
|
|
IAD_TreeView::~IAD_TreeView()
|
|
{
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// IAD_TreeView drawing
|
|
|
|
//***************************************************************************
|
|
void IAD_TreeView::OnDraw(CDC* pDC)
|
|
{
|
|
CDocument* pDoc = GetDocument();
|
|
// TODO: add draw code here
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// IAD_TreeView diagnostics
|
|
|
|
#ifdef _DEBUG
|
|
void IAD_TreeView::AssertValid() const
|
|
{
|
|
CTreeView::AssertValid();
|
|
}
|
|
|
|
void IAD_TreeView::Dump(CDumpContext& dc) const
|
|
{
|
|
CTreeView::Dump(dc);
|
|
}
|
|
#endif //_DEBUG
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// IAD_TreeView message handlers
|