⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 isotable.h

📁 基于单片机的 snmp协议解析的一些原代码 给有用的 同行
💻 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 + -