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

#include "stdafx.h"
#include "Bitmaps.h"

#include "BitmapsDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CBitmapsDoc

IMPLEMENT_DYNCREATE(CBitmapsDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CBitmapsDoc construction/destruction

CBitmapsDoc::CBitmapsDoc()
{
}

CBitmapsDoc::~CBitmapsDoc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CBitmapsDoc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CBitmapsDoc diagnostics

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

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

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