Скачиваний:
29
Добавлен:
02.05.2014
Размер:
1.31 Кб
Скачать
// PixFrmtDoc.cpp : реализация класса CPixFrmtDoc
//

#include "stdafx.h"
#include "PixFrmt.h"

#include "PixFrmtDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CPixFrmtDoc

IMPLEMENT_DYNCREATE(CPixFrmtDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CPixFrmtDoc : конструктор/деструктор

CPixFrmtDoc::CPixFrmtDoc()
{
}

CPixFrmtDoc::~CPixFrmtDoc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CPixFrmtDoc  - сериализация

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

/////////////////////////////////////////////////////////////////////////////
// CPixFrmtDoc - диагностика

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

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

Соседние файлы в папке PixFrmtCheck