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

📄 ftp2doc.cpp

📁 《Visual C++ Bible》或者说是《Visual C++ 宝典》的对应的源码文件
💻 CPP
字号:
// FTP2Doc.cpp : implementation of the CFTP2Doc class
//

#include "stdafx.h"
#include "FTP2.h"

#include "FTP2Doc.h"

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

/////////////////////////////////////////////////////////////////////////////
// CFTP2Doc

IMPLEMENT_DYNCREATE(CFTP2Doc, CDocument)

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

/////////////////////////////////////////////////////////////////////////////
// CFTP2Doc construction/destruction

CFTP2Doc::CFTP2Doc()
{
}

CFTP2Doc::~CFTP2Doc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CFTP2Doc serialization

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

/////////////////////////////////////////////////////////////////////////////
// CFTP2Doc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// CFTP2Doc commands

⌨️ 快捷键说明

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