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

📄 workerthreadsdoc.cpp

📁 Introduces synchronization concepts and practices in multithreaded applications
💻 CPP
字号:
// WorkerThreadsDoc.cpp : implementation of the CWorkerThreadsDoc class
//

#include "stdafx.h"
#include "WorkerThreads.h"

#include "WorkerThreadsDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CWorkerThreadsDoc

IMPLEMENT_DYNCREATE(CWorkerThreadsDoc, CDocument)

BEGIN_MESSAGE_MAP(CWorkerThreadsDoc, CDocument)
END_MESSAGE_MAP()


// CWorkerThreadsDoc construction/destruction

CWorkerThreadsDoc::CWorkerThreadsDoc()
{
	// TODO: add one-time construction code here

}

CWorkerThreadsDoc::~CWorkerThreadsDoc()
{
}

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

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}




// CWorkerThreadsDoc serialization

void CWorkerThreadsDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}


// CWorkerThreadsDoc diagnostics

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

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


// CWorkerThreadsDoc commands

⌨️ 快捷键说明

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