isotable.h

来自「基于单片机的 snmp协议解析的一些原代码 给有用的 同行」· C头文件 代码 · 共 24 行

H
24
字号
#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 + =
减小字号Ctrl + -
显示快捷键?