📄 isotable.h
字号:
#ifndef ISOTABLE_H
#define ISOTABLE_H
//-----------------------------------------------------------------
//
//-----------------------------------------------------------------
#include "ISOEntry.h"
/**# :[Description = "A Table as defined in a MIB"] */
class ISO_Table : public ISO_Node {
public:
/**# :[Description = "Standard Constructor."] [Inputs = "The tokens, the name of the parent node and the type"] [Output = "Creates the table node."] */
ISO_Table(char **theToks, short theNumToks, string& theParentName, const char *theType,
string &theParentOid) : ISO_Node(theToks, theNumToks, theParentName, theType, theParentOid)
{
}
/**# :[Description = "Destructor."] */
~ISO_Table();
private :
/**# :[Description = "The Entry which defines the table data."] */
ISO_Entry *Entry;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -