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

📄 tmonitordoc.cpp

📁 使用环境VC++ 6.0
💻 CPP
字号:
// tMonitorDoc.cpp : implementation of the CtMonitorDoc class
//

#include "stdafx.h"
#include "tMonitor.h"

#include "tMonitorDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CtMonitorDoc

IMPLEMENT_DYNCREATE(CtMonitorDoc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CtMonitorDoc construction/destruction

CtMonitorDoc::CtMonitorDoc()
{
}

CtMonitorDoc::~CtMonitorDoc()
{
}

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

	return TRUE;
}

/////////////////////////////////////////////////////////////////////////////
// CtMonitorDoc serialization

void CtMonitorDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
	}
	else
	{
	}
}

/////////////////////////////////////////////////////////////////////////////
// CtMonitorDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CtMonitorDoc commands

⌨️ 快捷键说明

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