Скачиваний:
29
Добавлен:
02.05.2014
Размер:
1.46 Кб
Скачать
// TransformDoc.cpp : implementation of the CTransformDoc class
//

#include "stdafx.h"
#include "Transform.h"

#include "TransformDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CTransformDoc

IMPLEMENT_DYNCREATE(CTransformDoc, CDocument)

BEGIN_MESSAGE_MAP(CTransformDoc, CDocument)
	//{{AFX_MSG_MAP(CTransformDoc)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CTransformDoc construction/destruction

CTransformDoc::CTransformDoc()
{
}

CTransformDoc::~CTransformDoc()
{
}

BOOL CTransformDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CTransformDoc serialization

void CTransformDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
	}
	else
	{
	}
}

/////////////////////////////////////////////////////////////////////////////
// CTransformDoc diagnostics

#ifdef _DEBUG
void CTransformDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CTransformDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CTransformDoc commands
Соседние файлы в папке Transform