// ====================================================================== // // T_appDoc.cpp : implementation of the CUsbappDoc class // #include "stdafx.h" #include "Test_app.h" #include "T_appDoc.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif // ======================================================================= // CUsbappDoc IMPLEMENT_DYNCREATE(CUsbappDoc, CDocument) BEGIN_MESSAGE_MAP(CUsbappDoc, CDocument) //{{AFX_MSG_MAP(CUsbappDoc) // 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() // ======================================================================= // CUsbappDoc construction/destruction CUsbappDoc::CUsbappDoc() { // TODO: add one-time construction code here } CUsbappDoc::~CUsbappDoc() { } BOOL CUsbappDoc::OnNewDocument() { if (!CDocument::OnNewDocument()) return FALSE; // TODO: add reinitialization code here // (SDI documents will reuse this document) return TRUE; } // ======================================================================= // CUsbappDoc serialization void CUsbappDoc::Serialize(CArchive& ar) { if (ar.IsStoring()) { // TODO: add storing code here } else { // TODO: add loading code here } } // ======================================================================= // CUsbappDoc diagnostics #ifdef _DEBUG void CUsbappDoc::AssertValid() const { CDocument::AssertValid(); } void CUsbappDoc::Dump(CDumpContext& dc) const { CDocument::Dump(dc); } #endif //_DEBUG