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

  1. #if !defined(TIMESTAMP__H__8EC1A8D3_1DCA_11D0_9C9B_444553540000__INCLUDED_)
  2. #define TIMESTAMP__H__8EC1A8D3_1DCA_11D0_9C9B_444553540000__INCLUDED_
  3.  
  4. // TimeStamp.h : main header file for the TIMESTAMP application
  5. //
  6.  
  7. #ifndef __AFXWIN_H__
  8.     #error include 'stdafx.h' before including this file for PCH
  9. #endif
  10.  
  11. #include "resource.h"       // main symbols
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CTimeStampApp:
  15. // See TimeStamp.cpp for the implementation of this class
  16. //
  17.  
  18. class CTimeStampApp : public CWinApp
  19. {
  20. public:
  21.     CTimeStampApp();
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CTimeStampApp)
  26.     public:
  27.     virtual BOOL InitInstance();
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31.  
  32.     //{{AFX_MSG(CTimeStampApp)
  33.     afx_msg void OnAppAbout();
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code !
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.  
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  45.  
  46. #endif // !defined(TIMESTAMP__H__8EC1A8D3_1DCA_11D0_9C9B_444553540000__INCLUDED)
  47.