uninode.h
来自「模拟器提供了一个简单易用的平台」· C头文件 代码 · 共 42 行
H
42 行
/************************************************** * File: uninode.h Author: Suman Banerjee <suman@cs.umd.edu> Date: July 31, 2001 Terms: GPL UNI implementation in myns This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * **************************************************/#ifndef _UNINODE_H_#define _UNINODE_H_#include <node.h>class UniNode : public Node {public: int m_data_packet_count; int m_control_packet_count; int * m_per_node_data_pkt_count;public: UniNode(void); ~UniNode(void); void specific_tx_pkt (Packet *p, int dst); void specific_rx_pkt_handler (Packet *p, bool is_src); void display_on_stop_simulation (void);};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?