JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
DxPolygonDoc.cpp
Go to the documentation of this file.
1//
2// DxPolygonDoc.cpp : 実装ファイル
3//
4
5#include "..\stdafx.h"
6
7#include "DxPolygonDoc.h"
8
9
10// DxPolygonDoc
11
12IMPLEMENT_DYNCREATE(DxPolygonDoc, CExDocument)
13
14//
18
19
20//
22{
23 if (!CExDocument::OnNewDocument()) return FALSE;
24 return TRUE;
25}
26
27
28//
32
33
34BEGIN_MESSAGE_MAP(DxPolygonDoc, CExDocument)
35END_MESSAGE_MAP()
36
37
38
39// DxPolygonDoc 診断
40
41#ifdef _DEBUG
43{
44 CExDocument::AssertValid();
45}
46
47
48#ifndef _WIN32_WCE
49void DxPolygonDoc::Dump(CDumpContext& dc) const
50{
51 CExDocument::Dump(dc);
52}
53#endif
54#endif //_DEBUG
55
56
57#ifndef _WIN32_WCE
58// DxPolygonDoc シリアル化
59
60void DxPolygonDoc::Serialize(CArchive& ar)
61{
62 if (ar.IsStoring()) {
63 // TODO: 格納するコードをここに追加してください。
64 }
65 else {
66 // TODO: 読み込むコードをここに追加してください。
67 }
68}
69#endif
70
71
72// DxPolygonDoc コマンド
virtual BOOL OnNewDocument()
virtual ~DxPolygonDoc()
virtual void Serialize(CArchive &ar)
virtual void AssertValid() const
virtual void Dump(CDumpContext &dc) const