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

📄 application.h

📁 WSN仿真一例假定节点0(node[0])周期性广播消息其它节点接收到消息并转发出去
💻 H
字号:
//-------------------------------------------------------------------//  file name: application.h// //    - header file for the application class//    - see the .cpp file for more details////-------------------------------------------------------------------#ifndef __APPLICATION_H#define __APPLICATION_H#include <omnetpp.h>#include "globaldef.h"#include <list>/** Main class on top of all the protocol stack. It contains user defined code  * as the top application or for debugging/testing the underlying layers  */class application : public cSimpleModule{    	/** omnet++ specific code */    Module_Class_Members(application,cSimpleModule,0);	/** the initialization function */	void initialize();	/** main loop function */	void handleMessage(cMessage *msg);	/** last function to be called in this class */	void finish();	// local functions	void processFlood(cMessage *msg);	// local data structures		int last_seen_id;	// the id of the last seen message	int msgcount;		// number of generated/forwarded messages};Define_Module( application );#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -