home *** CD-ROM | disk | FTP | other *** search
/ Team Palmtops 7 / Palmtops_numero07.iso / WinCE / SDKWindowsCE / HandHeldPCPro30 / sdk.exe / Jupiter SDK / data1.cab / MFC_Samples / chkbook / chkbook.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-02-19  |  1.3 KB  |  50 lines

  1. // chkbook.h : main header file for the CHKBOOK application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1999 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #ifndef __INC_CHKBOOK_H__
  14. #define __INC_CHKBOOK_H__
  15.  
  16. #ifndef __AFXWIN_H__
  17.     #error include 'stdafx.h' before including this file for PCH
  18. #endif
  19.  
  20. #include "resource.h"       // main symbols
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CCheckBookApp:
  24. // See chkbook.cpp for the implementation of this class
  25. //
  26.  
  27. class CCheckBookApp : public CWinApp
  28. {
  29. public:
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CCheckBookApp)
  34.     public:
  35.     virtual BOOL InitInstance();
  36.     //}}AFX_VIRTUAL
  37.  
  38. // Implementation
  39.     void CheckView(BOOL bCheckView);
  40.     //{{AFX_MSG(CCheckBookApp)
  41.     afx_msg void OnAppAbout();
  42.     afx_msg void OnFileOpen();
  43.     //}}AFX_MSG
  44.     void OnAppExit();
  45.     DECLARE_MESSAGE_MAP()
  46. };
  47.  
  48. #endif // __INC_CHKBOOK_H__
  49. /////////////////////////////////////////////////////////////////////////////
  50.