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/MCADoc.h

49 lines
838 B
C
Raw Normal View History

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

2022-03-19 21:04:48 +08:00
// MCADoc.h: CMCADoc 类的接口
2022-03-19 20:43:29 +08:00
//
#pragma once
2022-03-19 21:04:48 +08:00
class CMCADoc : public CDocument
2022-03-19 20:43:29 +08:00
{
protected: // 仅从序列化创建
2022-03-19 21:04:48 +08:00
CMCADoc() noexcept;
DECLARE_DYNCREATE(CMCADoc)
2022-03-19 20:43:29 +08:00
// 特性
public:
// 操作
public:
// 重写
public:
virtual BOOL OnNewDocument();
virtual void Serialize(CArchive& ar);
#ifdef SHARED_HANDLERS
virtual void InitializeSearchContent();
virtual void OnDrawThumbnail(CDC& dc, LPRECT lprcBounds);
#endif // SHARED_HANDLERS
// 实现
public:
2022-03-19 21:04:48 +08:00
virtual ~CMCADoc();
2022-03-19 20:43:29 +08:00
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected:
// 生成的消息映射函数
protected:
DECLARE_MESSAGE_MAP()
#ifdef SHARED_HANDLERS
// 用于为搜索处理程序设置搜索内容的 Helper 函数
void SetSearchContent(const CString& value);
#endif // SHARED_HANDLERS
};