Скачиваний:
28
Добавлен:
02.05.2014
Размер:
1.5 Кб
Скачать
// ProjectionsDoc.cpp : implementation of the CProjectionsDoc class
//

#include "stdafx.h"
#include "Projections.h"

#include "ProjectionsDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CProjectionsDoc

IMPLEMENT_DYNCREATE(CProjectionsDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CProjectionsDoc construction/destruction

CProjectionsDoc::CProjectionsDoc()
{
}

CProjectionsDoc::~CProjectionsDoc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CProjectionsDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CProjectionsDoc diagnostics

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

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

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