47 lines
1.1 KiB
C++
47 lines
1.1 KiB
C++
//=========================================================================
|
|
// CPADoc.cpp : implementation of the CPA_ProjectDoc class
|
|
// This is a part of the CPA project.
|
|
//
|
|
// Version 1.0
|
|
// Creation date 06/06/96
|
|
// Revision date
|
|
//
|
|
// (c) Ubi Studios 1996
|
|
//
|
|
// DO NOT MODIFY THAT FILE. IF SOMETHING NEEDS TO BE CHANGE, PLEASE CONTACT
|
|
// VINCENT GRECO OR CHRISTOPHE BEAUDET.
|
|
//=========================================================================
|
|
|
|
#include "stdafx.h"
|
|
#include "Itf/CPADoc.hpp"
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPA_ProjectDoc
|
|
|
|
IMPLEMENT_DYNCREATE(CPA_ProjectDoc, CDocument)
|
|
BEGIN_MESSAGE_MAP(CPA_ProjectDoc, CDocument)
|
|
//{{AFX_MSG_MAP(CPA_ProjectDoc)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPA_ProjectDoc construction/destruction
|
|
|
|
CPA_ProjectDoc::CPA_ProjectDoc()
|
|
{
|
|
}
|
|
|
|
CPA_ProjectDoc::~CPA_ProjectDoc()
|
|
{
|
|
}
|
|
|
|
BOOL CPA_ProjectDoc::OnNewDocument()
|
|
{
|
|
if (!CDocument::OnNewDocument())
|
|
return FALSE;
|
|
return TRUE;
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CPA_ProjectDoc commands
|