// NetTestDoc.cpp : CNetTestDoc Ŭ·¡½ºÀÇ ±¸Çö // #include "stdafx.h" #include "NetTest.h" #include "NetTestDoc.h" #ifdef _DEBUG #define new DEBUG_NEW #endif // CNetTestDoc IMPLEMENT_DYNCREATE(CNetTestDoc, CDocument) BEGIN_MESSAGE_MAP(CNetTestDoc, CDocument) END_MESSAGE_MAP() // CNetTestDoc »ý¼º/¼Ò¸ê CNetTestDoc::CNetTestDoc() { // TODO: ¿©±â¿¡ ÀÏȸ¼º »ý¼º Äڵ带 Ãß°¡ÇÕ´Ï´Ù. } CNetTestDoc::~CNetTestDoc() { } BOOL CNetTestDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; // TODO: ¿©±â¿¡ ÀçÃʱâÈ­ Äڵ带 Ãß°¡ÇÕ´Ï´Ù. // SDI ¹®¼­´Â ÀÌ ¹®¼­¸¦ ´Ù½Ã »ç¿ëÇÕ´Ï´Ù. return TRUE; } // CNetTestDoc serialization void CNetTestDoc::Serialize(CArchive& ar) { if (ar.IsStoring()) { // TODO: ¿©±â¿¡ ÀúÀå Äڵ带 Ãß°¡ÇÕ´Ï´Ù. } else { // TODO: ¿©±â¿¡ ·Îµù Äڵ带 Ãß°¡ÇÕ´Ï´Ù. } } // CNetTestDoc Áø´Ü #ifdef _DEBUG void CNetTestDoc::AssertValid() const { CDocument::AssertValid(); } void CNetTestDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG // CNetTestDoc ¸í·É