【VC开源代码栏目提醒】:网学会员为需要VC开源代码的朋友们搜集整理了GetSystemPathDoc.cpp相关资料,希望对各位网友有所帮助!
// GetSystemPathDoc.cpp : implementation of the CGetSystemPathDoc class
//
#include "stdafx.h"
#include "GetSystemPath.h"
#include "GetSystemPathDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CGetSystemPathDoc
IMPLEMENT_DYNCREATE(CGetSystemPathDoc, CDocument)
BEGIN_MESSAGE_MAP(CGetSystemPathDoc, CDocument)
//{{AFX_MSG_MAP(CGetSystemPathDoc)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CGetSystemPathDoc construction/destruction
CGetSystemPathDoc::CGetSystemPathDoc()
{
// TODO: add one-time construction code here
}
CGetSystemPathDoc::~CGetSystemPathDoc()
{
}
BOOL CGetSystemPathDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
/////////////////////////////////////////////////////////////////////////////
// CGetSystemPathDoc serialization
void CGetSystemPathDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// CGetSystemPathDoc diagnostics
#ifdef _DEBUG
void CGetSystemPathDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CGetSystemPathDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// CGetSystemPathDoc commands