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

📄 linkfactory.cpp

📁 uml编辑器很牛
💻 CPP
字号:
/* ==========================================================================
	Author :		Johan Rosengren, Abstrakt Mekanik AB

	Date :			2004-04-29

	Purpose :		"CLinkFactory" is a simple class with one single static 
					function, returning and updating a single static int 
					value to use as a unique id for drawing objects.	

	Description :	See below

	Usage :			Call "CLinkFactory::GetID" to get a unique id during this 
					session.

   ========================================================================*/
#include "stdafx.h"
#include "LinkFactory.h"

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

CString CLinkFactory::GetID()
/* ============================================================
	Function :		CLinkFactory::GetID
	Description :	Returns a unique int every time it is 
					called.
	Access :		Public

	Return :		CString	-	"CString" with the unique id.
	Parameters :	none

	Usage :			Call to get a unique id. Used to get unique 
					ids for the object name attributes.

   ============================================================*/
{
	CString str;

	str.Format( _T( "%i" ), CLinkFactory::s_currentID );
	CLinkFactory::s_currentID++;

	return str;

}

int CLinkFactory::s_currentID = 0;

⌨️ 快捷键说明

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