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