mirror of
https://github.com/DxWnd/DxWnd.reloaded
synced 2024-12-30 09:25:35 +01:00
76 lines
1.4 KiB
C++
76 lines
1.4 KiB
C++
// dxwndhostDoc.cpp : CDxwndhostDoc Define the behavior of the class.
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "dxwndhost.h"
|
|
|
|
#include "dxwndhostDoc.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDxwndhostDoc
|
|
|
|
IMPLEMENT_DYNCREATE(CDxwndhostDoc, CDocument)
|
|
|
|
BEGIN_MESSAGE_MAP(CDxwndhostDoc, CDocument)
|
|
//{{AFX_MSG_MAP(CDxwndhostDoc)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDxwndhostDoc class constructor / destructor
|
|
|
|
CDxwndhostDoc::CDxwndhostDoc()
|
|
{
|
|
}
|
|
|
|
CDxwndhostDoc::~CDxwndhostDoc()
|
|
{
|
|
}
|
|
|
|
BOOL CDxwndhostDoc::OnNewDocument()
|
|
{
|
|
if (!CDocument::OnNewDocument())
|
|
return FALSE;
|
|
|
|
return TRUE;
|
|
}
|
|
|
|
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDxwndhostDoc Serialization
|
|
|
|
void CDxwndhostDoc::Serialize(CArchive& ar)
|
|
{
|
|
if (ar.IsStoring())
|
|
{
|
|
}
|
|
else
|
|
{
|
|
}
|
|
}
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDxwndhostDoc Diagnostic Class
|
|
|
|
#ifdef _DEBUG
|
|
void CDxwndhostDoc::AssertValid() const
|
|
{
|
|
CDocument::AssertValid();
|
|
}
|
|
|
|
void CDxwndhostDoc::Dump(CDumpContext& dc) const
|
|
{
|
|
CDocument::Dump(dc);
|
|
}
|
|
#endif //_DEBUG
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// CDxwndhostDoc Command
|