MDI.h 896 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. // MDI.h : main header file for the MDI application
  2. //
  3. #ifndef MDI_H
  4. #define MDI_H
  5. #ifndef __AFXWIN_H__
  6. #error include 'stdafx.h' before including this file for PCH
  7. #endif
  8. #include "resource.h" // main symbols
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CMDIApp:
  11. // See MDI.cpp for the implementation of this class
  12. //
  13. class CMDIApp : public CWinApp
  14. {
  15. public:
  16. CMDIApp();
  17. // Overrides
  18. // ClassWizard generated virtual function overrides
  19. //{{AFX_VIRTUAL(CMDIApp)
  20. public:
  21. virtual BOOL InitInstance();
  22. //}}AFX_VIRTUAL
  23. // Implementation
  24. //{{AFX_MSG(CMDIApp)
  25. afx_msg void OnAppAbout();
  26. //}}AFX_MSG
  27. DECLARE_MESSAGE_MAP()
  28. };
  29. /////////////////////////////////////////////////////////////////////////////
  30. //{{AFX_INSERT_LOCATION}}
  31. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  32. #endif //MDI_H