?? rsesinformationvector.h
字號:
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn
// Date..........:
// Description...:
// Revisions.....:
//===================================================================
#ifndef __RSESINFORMATIONVECTOR_H__
#define __RSESINFORMATIONVECTOR_H__
#include <copyright.h>
#include <kernel/structures/informationvector.h>
//-------------------------------------------------------------------
// Class prototypes.
//===================================================================
class TDObject;
//-------------------------------------------------------------------
// Class.........: RSESInformationVector
// Author........: Aleksander 豩rn
// Date..........:
// Description...: Wrapper class for inf. vectors from the RSES library.
// Revisions.....:
//===================================================================
class RSESInformationVector : public InformationVector {
private:
//- Friend declarations............................................
friend class RSESDecisionTable;
private:
//- Private member variables.......................................
TDObject *inf_; // From the RSES library.
bool is_owner_; // Does the wrapper own the embedded object?
protected:
//- Constructors...................................................
RSESInformationVector(const RSESInformationVector &in);
public:
//- Constructor and destructor....................................
RSESInformationVector();
RSESInformationVector(int size);
virtual ~RSESInformationVector();
//- Methods inherited from Identifier.............................
DECLAREIDMETHODS()
//- Methods inherited from Structure..............................
virtual Structure *Duplicate() const;
//- Access methods................................................
virtual int GetNoAttributes() const;
virtual int GetEntry(int attribute_no) const;
virtual bool SetEntry(int attribute_no, int value);
//- Attribute administration......................................
virtual bool InsertAttribute(int attribute_no);
virtual bool RemoveAttribute(int attribute_no);
};
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -