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

📄 integerattribute.h

📁 粗糙集应用软件
💻 H
字号:
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn
// Date..........: 960630
// Description...:
// Revisions.....:
//===================================================================

#ifndef __INTEGERATTRIBUTE_H__
#define __INTEGERATTRIBUTE_H__

#include <copyright.h>

#include <kernel/structures/attribute.h>

//-------------------------------------------------------------------
// Class.........: IntegerAttribute
// Author........: Aleksander 豩rn
// Date..........: 960630
// Description...: For integers, n maps to "n" and vice versa.
// Comments......:
// Revisions.....:
//===================================================================

class IntegerAttribute : public Attribute {
protected:

  //- Constructor....................................................
  IntegerAttribute(const IntegerAttribute &in);

public:

  //- Constructors/destructor........................................
  IntegerAttribute();
  virtual ~IntegerAttribute();

  //- Methods inherited from Identifier..............................
	DECLAREIDMETHODS()

  //- Methods inherited from Structure...............................
  virtual Structure                *Duplicate() const;

  //- Methods inherited from Attribute...............................
	virtual int                       GetEntry(const String &text) const;
	virtual const String             &GetEntry(int value) const;
	virtual int                       SuggestEntry(const String &text) const;
	virtual bool                      SetEntry(int value, const String &text);

	virtual Attribute::Type           GetType() const;

};

#endif

⌨️ 快捷键说明

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