|
// MFCMView.h: MFCMView 应用程序的主头文件
|
//
|
#pragma once
|
|
#ifndef __AFXWIN_H__
|
#error "在包含此文件之前包含 'pch.h' 以生成 PCH"
|
#endif
|
|
#include "resource.h" // 主符号
|
|
|
// CMFCMViewApp:
|
// 有关此类的实现,请参阅 MFCMView.cpp
|
//
|
|
class CMFCMViewApp : public CWinAppEx
|
{
|
public:
|
CMFCMViewApp() noexcept;
|
|
|
// 重写
|
public:
|
virtual BOOL InitInstance();
|
virtual int ExitInstance();
|
|
// 实现
|
protected:
|
HMENU m_hMDIMenu;
|
HACCEL m_hMDIAccel;
|
|
public:
|
afx_msg void OnAppAbout();
|
afx_msg void OnFileNew();
|
DECLARE_MESSAGE_MAP()
|
};
|
|
extern CMFCMViewApp theApp;
|