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++

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