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.
35 lines
782 B
35 lines
782 B
// dhcpdoc.h : interface of the CDhcpDoc class
|
|
//
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
class CDhcpDoc : public CDocument
|
|
{
|
|
protected: // create from serialization only
|
|
CDhcpDoc();
|
|
DECLARE_DYNCREATE(CDhcpDoc)
|
|
|
|
// Attributes
|
|
public:
|
|
|
|
// Operations
|
|
public:
|
|
|
|
// Implementation
|
|
public:
|
|
virtual ~CDhcpDoc();
|
|
virtual void Serialize(CArchive& ar); // overridden for document i/o
|
|
#ifdef _DEBUG
|
|
virtual void AssertValid() const;
|
|
virtual void Dump(CDumpContext& dc) const;
|
|
#endif
|
|
protected:
|
|
virtual BOOL OnNewDocument();
|
|
|
|
// Generated message map functions
|
|
protected:
|
|
//{{AFX_MSG(CDhcpDoc)
|
|
//}}AFX_MSG
|
|
DECLARE_MESSAGE_MAP()
|
|
};
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|