linkfactory.cpp

来自「大家用过UML的流程图设计器吧」· C++ 代码 · 共 50 行

CPP
50
字号
/* ==========================================================================
	CLinkFactory

	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

int CLinkFactory::s_currentID = 0;

CString CLinkFactory::GetID()
/* ============================================================
	Function :		CLinkFactory::GetID
	Description :	Returns a unique int every time it is 
					called.
					
	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;

}

⌨️ 快捷键说明

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