Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018 #ifndef NETWORKINFO_H_
00019 #define NETWORKINFO_H_
00020
00021 #include <omnetpp.h>
00022
00023 #include "IScriptable.h"
00024
00028 class INET_API NetworkInfo : public cSimpleModule, public IScriptable
00029 {
00030 protected:
00031 virtual void initialize();
00032 virtual void handleMessage(cMessage *msg);
00033
00034
00035 virtual void processCommand(const cXMLElement& node);
00036
00037 protected:
00038 virtual void dumpRoutingInfo(cModule *target, const char *filename, bool append, bool compat);
00039 };
00040
00041
00042 #endif