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

39 lines
606 B
C++

// MFCApplication6.h : MFCApplication6 应用程序的主头文件
//
#pragma once
#ifndef __AFXWIN_H__
#error "在包含此文件之前包含“stdafx.h”以生成 PCH 文件"
#endif
#include "resource.h" // 主符号
#include "PlayApi.h"
#include "PtzScreen.h"
// CMFCApplication6App:
// 有关此类的实现,请参阅 MFCApplication6.cpp
//
class CFastApp : public CWinApp
{
public:
CFastApp();
public:
CString m_strModulePath;
BOOL m_bCalibrator;
// 重写
public:
virtual BOOL InitInstance();
virtual int ExitInstance();
// 实现
afx_msg void OnAppAbout();
DECLARE_MESSAGE_MAP()
};
extern CFastApp theApp;