// DepthDoc.cpp : implementation file
//

#include "stdafx.h"
#include "6046dryend.h"
#include "DepthDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDepthDoc

IMPLEMENT_DYNCREATE(CDepthDoc, CDocument)

CDepthDoc::CDepthDoc()
{
}

BOOL CDepthDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;
	return TRUE;
}

CDepthDoc::~CDepthDoc()
{
}


BEGIN_MESSAGE_MAP(CDepthDoc, CDocument)
	//{{AFX_MSG_MAP(CDepthDoc)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDepthDoc diagnostics

#ifdef _DEBUG
void CDepthDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CDepthDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CDepthDoc serialization

void CDepthDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CDepthDoc commands
