This repository has been archived on 2022-07-04. You can view files and clone it, but cannot push or open issues or pull requests.
Multichannel-Analyzer/MCA/MCA.h

34 lines
543 B
C
Raw Normal View History

2022-03-19 20:43:29 +08:00

// Multichannel Analyzer.h: Multichannel Analyzer 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error "在包含此文件之前包含 'pch.h' 以生成 PCH"
#endif
#include "resource.h" // 主符号
2022-03-19 21:04:48 +08:00
// CMCAApp:
2022-03-19 20:43:29 +08:00
// 有关此类的实现,请参阅 Multichannel Analyzer.cpp
//
2022-03-19 21:04:48 +08:00
class CMCAApp : public CWinApp
2022-03-19 20:43:29 +08:00
{
public:
2022-03-19 21:04:48 +08:00
CMCAApp() noexcept;
2022-03-19 20:43:29 +08:00
// 重写
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
// 实现
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
};
2022-03-19 21:04:48 +08:00
extern CMCAApp theApp;