Neural Network program for pattern classification
源代码在线查看: data.cpp
// Data.cpp : implementation file
//
#include "stdafx.h"
#include "PatternHW4.h"
#include "Data.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// Data
IMPLEMENT_DYNCREATE(Data, CDocument)
Data::Data()
{
}
BOOL Data::OnNewDocument()
{
if (!CDocument::OnNewDocument())
return FALSE;
return TRUE;
}
Data::~Data()
{
}
BEGIN_MESSAGE_MAP(Data, CDocument)
//{{AFX_MSG_MAP(Data)
// NOTE - the ClassWizard will add and remove mapping macros here.
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// Data diagnostics
#ifdef _DEBUG
void Data::AssertValid() const
{
CDocument::AssertValid();
}
void Data::Dump(CDumpContext& dc) const
{
CDocument::Dump(dc);
}
#endif //_DEBUG
/////////////////////////////////////////////////////////////////////////////
// Data serialization
void Data::Serialize(CArchive& ar)
{
if (ar.IsStoring())
{
// TODO: add storing code here
}
else
{
// TODO: add loading code here
}
}
/////////////////////////////////////////////////////////////////////////////
// Data commands