video demo.h

来自「数字图像处理」· C头文件 代码 · 共 65 行

H
65
字号
// Video Demo.h : main header file for the VIDEO DEMO application
//

#if !defined(AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_)
#define AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#ifndef __AFXWIN_H__
	#error include 'stdafx.h' before including this file for PCH
#endif

// 数据管理
#include "DataManager.h"
#include "MediaSource.h"
// CImageProcessingCenterBCGEApp:
// See Image Processing Center BCGE.cpp for the implementation of this class
//
#include "video demodoc.h"
#include "resource.h"       // main symbols

/////////////////////////////////////////////////////////////////////////////
// CVideoDemoApp:
// See Video Demo.cpp for the implementation of this class
//

class CVideoDemoApp : public CWinApp
{
public:
	CVideoDemoApp();

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CVideoDemoApp)
	public:
	virtual BOOL InitInstance();
	//}}AFX_VIRTUAL

public:
	DataManager dm;           // 数据管理器

	ImageData *curImageData;  // 当前图像数据
	ImageData *lastImageData; // 上一次选择的图像数据

	VideoData *curVideo;      // 当前视频(目前版本不对视频进行管理,只打开视频)

// Implementation
	//{{AFX_MSG(CVideoDemoApp)
	afx_msg void OnAppAbout();
		// NOTE - the ClassWizard will add and remove member functions here.
		//    DO NOT EDIT what you see in these blocks of generated code !
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

extern CVideoDemoApp theApp;
/////////////////////////////////////////////////////////////////////////////

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_VIDEODEMO_H__2F3EA7BB_E6A9_4BF3_BCD7_39D5D4F49B7D__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?