📄 ocintab.h
字号:
#ifndef _COCINestedTable
#define _COCINestedTable
#ifndef _COCICollection
#include "ocicoll.h"
#endif
template<class T>
class COCINestedTable : public COCICollection<T>
{
public:
COCINestedTable(const COCISession& Sess, COCIType type);
COCINestedTable(const COCISession& Sess, dvoid* instance, COCIType type);
COCINestedTable(const COCINestedTable<T>& src);
~COCINestedTable();
void remove(sb4 index);
bool exists(sb4 index);
sb4 first();
sb4 last();
bool next(sb4& index); // IN: index = this index, OUT: index = next index
bool prev(sb4& index);
};
#include "ocintab.inl"
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -