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

#include "stdafx.h"
#include "Faces.h"

#include "FacesDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CFacesDoc

IMPLEMENT_DYNCREATE(CFacesDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CFacesDoc construction/destruction

CFacesDoc::CFacesDoc()
{
}

CFacesDoc::~CFacesDoc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CFacesDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CFacesDoc diagnostics

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

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

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