CHKBOOK.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:1k
源码类别:

Windows编程

开发平台:

Visual C++

  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) 1992-1998 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. #include "resource.h"       // main symbols
  13. #include "mainfrm.h"
  14. #include "chkbkfrm.h"
  15. #include "dollcent.h"
  16. #include "fxrecdoc.h"
  17. #include "checkdoc.h"
  18. #include "checkvw.h"
  19. #include "rowview.h"
  20. #include "bookvw.h"
  21. class CChkBookApp : public CWinApp
  22. {
  23. public:
  24. CChkBookApp();
  25. CMultiDocTemplate* m_pBookViewTemplate;
  26. CMultiDocTemplate* m_pCheckViewTemplate;
  27. // Operations
  28. void UpdateIniFileWithDocPath(LPCTSTR lpszPathName);
  29. // Implementation
  30. protected:
  31. // overrides of CWinApp
  32. virtual BOOL InitInstance();
  33. virtual CDocument* OpenDocumentFile(LPCTSTR lpszFileName);
  34. CString GetDocPathFromIniFile();
  35. //{{AFX_MSG(CChkBookApp)
  36. afx_msg void OnFileNew();
  37. afx_msg void OnAppAbout();
  38. //}}AFX_MSG
  39. DECLARE_MESSAGE_MAP()
  40. };
  41. extern CChkBookApp theApp;
  42. /////////////////////////////////////////////////////////////////////////////