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