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

#include "stdafx.h"
#include "Lighting.h"

#include "LightingDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CLightingDoc

IMPLEMENT_DYNCREATE(CLightingDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CLightingDoc construction/destruction

CLightingDoc::CLightingDoc()
{
}

CLightingDoc::~CLightingDoc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CLightingDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CLightingDoc diagnostics

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

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

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