www.pudn.com > NetScan.rar > NetScanDoc.cpp
// NetScanDoc.cpp : implementation of the CNetScanDoc class
//
#include "stdafx.h"
#include "NetScan.h"
#include "NetScanDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CNetScanDoc
IMPLEMENT_DYNCREATE(CNetScanDoc, CDocument)
BEGIN_MESSAGE_MAP(CNetScanDoc, CDocument)
//{{AFX_MSG_MAP(CNetScanDoc)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CNetScanDoc construction/destruction
CNetScanDoc::CNetScanDoc()
{
// TODO: add one-time construction code here
}
CNetScanDoc::~CNetScanDoc()
{
}
BOOL CNetScanDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CNetScanDoc serialization
void CNetScanDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CNetScanDoc diagnostics
#ifdef _DEBUG
void CNetScanDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CNetScanDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CNetScanDoc commands