umlundoitem.cpp
来自「uml编辑器很牛」· C++ 代码 · 共 62 行
CPP
62 行
/* ==========================================================================
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 + =
减小字号Ctrl + -
显示快捷键?