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

📄 attribute.h

📁 uml编辑器很牛
💻 H
字号:
#ifndef _CATTRIBUTE_H_7261F2E3_1899_4934_B253082664F
#define _CATTRIBUTE_H_7261F2E3_1899_4934_B253082664F

///////////////////////////////////////////////////////////
// Attribute.h
// Created: 06/02/04
//

#include "StringHelpers.h"
#include "PropertyContainer.h"

class CAttribute : public CObject
{
public:
	// Construction/destruction
	CAttribute();
	virtual ~CAttribute();

// Operations
	CString ToString( BOOL nomarkers );
	CAttribute* Clone( );
	static CAttribute* FromString( const CString& str );
	CString GetString( int format = STRING_FORMAT_SAVE ) const;


// Attributes
	int maintype;
	int access;
	CString name;
	CString type;
	CString multiplicity;
	CString defaultvalue;
	CString stereotype;

	CPropertyContainer	properties;

};

#endif //_CATTRIBUTE_H_7261F2E3_1899_4934_B253082664F

⌨️ 快捷键说明

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