Main Page | File List

TransClientDoc.cpp

00001 // TransClientDoc.cpp : implementation of the CTransClientDoc class
00002 //
00003 
00004 #include "stdafx.h"
00005 #include "TransClient.h"
00006 
00007 #include "TransClientDoc.h"
00008 
00009 #ifdef _DEBUG
00010 #define new DEBUG_NEW
00011 #undef THIS_FILE
00012 static char THIS_FILE[] = __FILE__;
00013 #endif
00014 
00016 // CTransClientDoc
00017 
00018 IMPLEMENT_DYNCREATE(CTransClientDoc, CDocument)
00019 
00020 BEGIN_MESSAGE_MAP(CTransClientDoc, CDocument)
00021         //{{AFX_MSG_MAP(CTransClientDoc)
00022                 // NOTE - the ClassWizard will add and remove mapping macros here.
00023                 //    DO NOT EDIT what you see in these blocks of generated code!
00024         //}}AFX_MSG_MAP
00025 END_MESSAGE_MAP()
00026 
00028 // CTransClientDoc construction/destruction
00029 
00030 CTransClientDoc::CTransClientDoc()
00031 {
00032         // TODO: add one-time construction code here
00033 
00034 }
00035 
00036 CTransClientDoc::~CTransClientDoc()
00037 {
00038 }
00039 
00040 BOOL CTransClientDoc::OnNewDocument()
00041 {
00042         if (!CDocument::OnNewDocument())
00043                 return FALSE;
00044 
00045         // TODO: add reinitialization code here
00046         // (SDI documents will reuse this document)
00047 
00048         return TRUE;
00049 }
00050 
00051 
00052 
00054 // CTransClientDoc serialization
00055 
00056 void CTransClientDoc::Serialize(CArchive& ar)
00057 {
00058         if (ar.IsStoring())
00059         {
00060                 // TODO: add storing code here
00061         }
00062         else
00063         {
00064                 // TODO: add loading code here
00065         }
00066 }
00067 
00069 // CTransClientDoc diagnostics
00070 
00071 #ifdef _DEBUG
00072 void CTransClientDoc::AssertValid() const
00073 {
00074         CDocument::AssertValid();
00075 }
00076 
00077 void CTransClientDoc::Dump(CDumpContext& dc) const
00078 {
00079         CDocument::Dump(dc);
00080 }
00081 #endif //_DEBUG
00082 
00084 // CTransClientDoc commands
00085 
00086 void CTransClientDoc::SetTitle(LPCTSTR lpszTitle) 
00087 {
00088         // TODO: Add your specialized code here and/or call the base class
00089         
00090         CDocument::SetTitle("");
00091 }

Generated on Mon May 8 22:27:08 2006 by  doxygen 1.3.9.1