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

📄 umlundoitem.cpp

📁 uml编辑器很牛
💻 CPP
字号:
/* ==========================================================================
	Class :			CUMLUndoItem

	Author :		Johan Rosengren, Abstrakt Mekanik AB

	Date :			06/02/04

	Purpose :		"CUMLUndoItem", derived from "CUndoItem", is a single 
					application state for use with the "CDiagramEditor"-undo 
					mechanism.

	Description :	Two members are added, one for the background color and 
					one for the current package name.

	Usage :			Handled by the editor.

   ========================================================================*/

#include "stdafx.h"
#include "UMLUndoItem.h"

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

// Construction/destruction
CUMLUndoItem::CUMLUndoItem()
/* ============================================================
	Function :		CUMLUndoItem::CUMLUndoItem
	Description :	Constructor
	Access :		Public

	Return :		void
	Parameters :	none

	Usage :			

   ============================================================*/
{

	col = RGB( 255, 255, 255 );

}

CUMLUndoItem::~CUMLUndoItem()
/* ============================================================
	Function :		CUMLUndoItem::~CUMLUndoItem
	Description :	Destructor
	Access :		Public

	Return :		void
	Parameters :	none

	Usage :			

   ============================================================*/
{
}

⌨️ 快捷键说明

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