cntritem.cpp

来自「PC网络游戏的编程」· C++ 代码 · 共 51 行

CPP
51
字号
// CntrItem.cpp : implementation of the CServerCntrItem class
//

#include "stdafx.h"
#include "server.h"

#include "serverDoc.h"
#include "serverView.h"
#include "CntrItem.h"

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

/////////////////////////////////////////////////////////////////////////////
// CServerCntrItem implementation

IMPLEMENT_SERIAL(CServerCntrItem, CRichEditCntrItem, 0)

CServerCntrItem::CServerCntrItem(REOBJECT* preo, CServerDoc* pContainer)
	: CRichEditCntrItem(preo, pContainer)
{
	// TODO: add one-time construction code here
	
}

CServerCntrItem::~CServerCntrItem()
{
	// TODO: add cleanup code here
	
}

/////////////////////////////////////////////////////////////////////////////
// CServerCntrItem diagnostics

#ifdef _DEBUG
void CServerCntrItem::AssertValid() const
{
	CRichEditCntrItem::AssertValid();
}

void CServerCntrItem::Dump(CDumpContext& dc) const
{
	CRichEditCntrItem::Dump(dc);
}
#endif

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

⌨️ 快捷键说明

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