/*
Copyright (c) 1998 Richard Lawrence

This program is free software; you can redistribute it and/or modify it under the terms 
of the GNU General Public License as published by the Free Software Foundation; either 
version 2 of the License, or (at your option) any later version. This program is 
distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details. You should have received a copy of the GNU
General Public License along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
*/

// Atari800WinDoc.cpp : implementation of the CAtari800WinDoc class
//

#include "stdafx.h"
#include "Atari800Win.h"

#include "Atari800WinDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAtari800WinDoc

IMPLEMENT_DYNCREATE(CAtari800WinDoc, CDocument)

BEGIN_MESSAGE_MAP(CAtari800WinDoc, CDocument)
	//{{AFX_MSG_MAP(CAtari800WinDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
		//    DO NOT EDIT what you see in these blocks of generated code!
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAtari800WinDoc construction/destruction

CAtari800WinDoc::CAtari800WinDoc()
{
	// TODO: add one-time construction code here

}

CAtari800WinDoc::~CAtari800WinDoc()
{
}

BOOL CAtari800WinDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CAtari800WinDoc serialization

void CAtari800WinDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CAtari800WinDoc diagnostics

#ifdef _DEBUG
void CAtari800WinDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CAtari800WinDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CAtari800WinDoc commands
