home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c05 / lab05 / ex01 / timestampdoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.4 KB  |  53 lines

  1. #if !defined(TIMESTAMPDOC__H__8EC1A8D9_1DCA_11D0_9C9B_444553540000__INCLUDED_)
  2. #define TIMESTAMPDOC__H__8EC1A8D9_1DCA_11D0_9C9B_444553540000__INCLUDED_
  3.  
  4. // TimeStampDoc.h : interface of the CTimeStampDoc class
  5. //
  6. /////////////////////////////////////////////////////////////////////////////
  7.  
  8. class CTimeStampDoc : public CDocument
  9. {
  10. protected: // create from serialization only
  11.     CTimeStampDoc();
  12.     DECLARE_DYNCREATE(CTimeStampDoc)
  13.  
  14. // Attributes
  15. public:
  16.  
  17. // Operations
  18. public:
  19.  
  20. // Overrides
  21.     // ClassWizard generated virtual function overrides
  22.     //{{AFX_VIRTUAL(CTimeStampDoc)
  23.     public:
  24.     virtual BOOL OnNewDocument();
  25.     virtual void Serialize(CArchive& ar);
  26.     //}}AFX_VIRTUAL
  27.  
  28. // Implementation
  29. public:
  30.     virtual ~CTimeStampDoc();
  31. #ifdef _DEBUG
  32.     virtual void AssertValid() const;
  33.     virtual void Dump(CDumpContext& dc) const;
  34. #endif
  35.  
  36. protected:
  37.  
  38. // Generated message map functions
  39. protected:
  40.     //{{AFX_MSG(CTimeStampDoc)
  41.         // NOTE - the ClassWizard will add and remove member functions here.
  42.         //    DO NOT EDIT what you see in these blocks of generated code !
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.  
  49. //{{AFX_INSERT_LOCATION}}
  50. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  51.  
  52. #endif // !defined(TIMESTAMPDOC__H__8EC1A8D9_1DCA_11D0_9C9B_444553540000__INCLUDED)
  53.