fast-yolo4/fast/FastMainFrm.h
2024-09-29 13:58:12 +08:00

47 lines
726 B
C++

// MainFrm.h : CFastMainFrame 类的接口
//
#pragma once
class CFastMainFrame : public CFrameWnd
{
protected: // 仅从序列化创建
CFastMainFrame();
DECLARE_DYNCREATE(CFastMainFrame)
// 特性
public:
// 操作
public:
// 重写
public:
virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
// 实现
public:
virtual ~CFastMainFrame();
#ifdef _DEBUG
virtual void AssertValid() const;
virtual void Dump(CDumpContext& dc) const;
#endif
protected: // 控件条嵌入成员
CStatusBar m_wndStatusBar;
// 生成的消息映射函数
protected:
afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
DECLARE_MESSAGE_MAP()
public:
virtual void ActivateFrame(int nCmdShow = -1);
afx_msg void OnCalibrator();
afx_msg void OnFisheye();
};