identifier.h
来自「粗糙集应用软件」· C头文件 代码 · 共 42 行
H
42 行
//-------------------------------------------------------------------
// Author........: Aleksander 豩rn
// Date..........: 960307
// Description...:
// Revisions.....:
//===================================================================
#ifndef __IDENTIFIER_H__
#define __IDENTIFIER_H__
#include <copyright.h>
#include <kernel/basic/macros.h>
#include <kernel/basic/referent.h>
#include <kernel/basic/handle.h>
#include <kernel/basic/ids.h>
#include <kernel/basic/idholder.h>
#include <kernel/basic/vector.h>
//-------------------------------------------------------------------
// Class.........: Identifier
// Author........: Aleksander 豩rn
// Date..........: 960307
// Description...: Base class for self-identifying objects. IsA is a
// transitive relation.
// Revisions.....:
//===================================================================
class Identifier : public Referent {
public:
//- Type definitions..............................................
typedef Vector(Handle<Identifier>) Handles;
public:
//- Virtual methods for self-identification.......................
DECLAREIDMETHODS()
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?