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

📄 vidcapdoc.cpp

📁 我近期从事视频开发所以将我参考的资料上传给大家看看。
💻 CPP
字号:
#include "stdafx.h"
#include "VidCap.h"
#include "VidCapDoc.h"


#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


IMPLEMENT_DYNCREATE(CVidCapDoc, CDocument)

BEGIN_MESSAGE_MAP(CVidCapDoc, CDocument)
	//{{AFX_MSG_MAP(CVidCapDoc)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

CVidCapDoc::CVidCapDoc()
{
}

CVidCapDoc::~CVidCapDoc()
{
}

BOOL CVidCapDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	return TRUE;
}

void CVidCapDoc::Serialize(CArchive& /*ar*/)
{
  ASSERT(FALSE);
}

#ifdef _DEBUG
void CVidCapDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CVidCapDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

⌨️ 快捷键说明

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