mirror of https://github.com/lianthony/NT4.0
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.
81 lines
1.5 KiB
81 lines
1.5 KiB
/**********************************************************************/
|
|
/** Microsoft Windows/NT **/
|
|
/** Copyright(c) Microsoft Corp., 1995 **/
|
|
/**********************************************************************/
|
|
|
|
/*
|
|
dhcpdoc.cpp
|
|
Document management for dhcpadmn
|
|
|
|
FILE HISTORY:
|
|
|
|
*/
|
|
|
|
#include "stdafx.h"
|
|
|
|
#ifdef _DEBUG
|
|
#undef THIS_FILE
|
|
static char BASED_CODE THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDhcpDoc
|
|
|
|
IMPLEMENT_DYNCREATE(CDhcpDoc, CDocument)
|
|
|
|
BEGIN_MESSAGE_MAP(CDhcpDoc, CDocument)
|
|
//{{AFX_MSG_MAP(CDhcpDoc)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDhcpDoc construction/destruction
|
|
|
|
CDhcpDoc::CDhcpDoc()
|
|
{
|
|
}
|
|
|
|
CDhcpDoc::~CDhcpDoc()
|
|
{
|
|
}
|
|
|
|
BOOL
|
|
CDhcpDoc::OnNewDocument()
|
|
{
|
|
return CDocument::OnNewDocument();
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDhcpDoc serialization
|
|
|
|
void
|
|
CDhcpDoc::Serialize(
|
|
CArchive& ar
|
|
)
|
|
{
|
|
}
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDhcpDoc diagnostics
|
|
|
|
#ifdef _DEBUG
|
|
void
|
|
CDhcpDoc::AssertValid() const
|
|
{
|
|
CDocument::AssertValid();
|
|
}
|
|
|
|
void
|
|
CDhcpDoc::Dump(
|
|
CDumpContext& dc
|
|
) const
|
|
{
|
|
CDocument::Dump(dc);
|
|
}
|
|
|
|
#endif //_DEBUG
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDhcpDoc commands
|
|
|