DragonNest/Client/Test/SkillTest/EmblemTest/EmblemTestDoc.cpp
2024-12-20 16:56:44 +08:00

78 lines
2.3 KiB
C++
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// EmblemTestDoc.cpp : implementation of the CEmblemTestDoc class
//
#include "stdafx.h"
#include "EmblemTest.h"
#include "EmblemTestDoc.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CEmblemTestDoc
IMPLEMENT_DYNCREATE(CEmblemTestDoc, CDocument)
BEGIN_MESSAGE_MAP(CEmblemTestDoc, CDocument)
END_MESSAGE_MAP()
// CEmblemTestDoc construction/destruction
CEmblemTestDoc::CEmblemTestDoc()
{
// TODO: add one-time construction code here
}
CEmblemTestDoc::~CEmblemTestDoc()
{
}
BOOL CEmblemTestDoc::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
// TODO: add reinitialization code here
// (SDI documents will reuse this document)
return TRUE;
}
// CEmblemTestDoc serialization
void CEmblemTestDoc::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
// CEmblemTestDoc diagnostics
#ifdef _DEBUG
void CEmblemTestDoc::AssertValid() const
{
CDocument::AssertValid();
}
void CEmblemTestDoc::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
// CEmblemTestDoc commands