// barsDoc.cpp : implementation of the CBarsDoc class // #include "stdafx.h" #include "bars.h" #include "barsDoc.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CBarsDoc IMPLEMENT_DYNCREATE(CBarsDoc, CDocument) BEGIN_MESSAGE_MAP(CBarsDoc, CDocument) //{{AFX_MSG_MAP(CBarsDoc) // NOTE - the ClassWizard will add and remove mapping macros here. // DO NOT EDIT what you see in these blocks of generated code! //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CBarsDoc construction/destruction CBarsDoc::CBarsDoc() { // TODO: add one-time construction code here } CBarsDoc::~CBarsDoc() { } BOOL CBarsDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; // TODO: add reinitialization code here // (SDI documents will reuse this document) return TRUE; } ///////////////////////////////////////////////////////////////////////////// // CBarsDoc serialization void CBarsDoc::Serialize(CArchive& ar) { if (ar.IsStoring()) { // TODO: add storing code here } else { // TODO: add loading code here } } ///////////////////////////////////////////////////////////////////////////// // CBarsDoc diagnostics #ifdef _DEBUG void CBarsDoc::AssertValid() const { CDocument::AssertValid(); } void CBarsDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG ///////////////////////////////////////////////////////////////////////////// // CBarsDoc commands