⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mfcdoc.h

📁 利用opencv在mfc下实现视频的播放
💻 H
字号:
// mfcDoc.h : interface of the CMfcDoc class
//
/////////////////////////////////////////////////////////////////////////////

#if !defined(AFX_MFCDOC_H__61E80A64_0C9E_4444_929F_30A42C4BE594__INCLUDED_)
#define AFX_MFCDOC_H__61E80A64_0C9E_4444_929F_30A42C4BE594__INCLUDED_
#include "highgui.h"
#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000


class CMfcDoc : public CDocument
{
protected: // create from serialization only
	CMfcDoc();
	DECLARE_DYNCREATE(CMfcDoc)

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CMfcDoc)
	public:
	virtual BOOL OnNewDocument();
	virtual void Serialize(CArchive& ar);
	//}}AFX_VIRTUAL

// Implementation
public:
	CvCapture* capture;
	CString filePath;
	virtual ~CMfcDoc();
#ifdef _DEBUG
	virtual void AssertValid() const;
	virtual void Dump(CDumpContext& dc) const;
#endif

protected:

// Generated message map functions
protected:
	//{{AFX_MSG(CMfcDoc)
	afx_msg void OnFileOpen();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_MFCDOC_H__61E80A64_0C9E_4444_929F_30A42C4BE594__INCLUDED_)

⌨️ 快捷键说明

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