#include <InetInfo.h>
Public Member Functions | |
| InetInfo (uint32_t type, int moduleId, cObject **context) | |
| constructor | |
| void | setAccessNetModule (AccessNet *accessNetModule) |
| setter and getter | |
| void | setNodeID (int nodeID) |
| AccessNet * | getAccessNetModule () |
| int | getNodeID () |
Protected Member Functions | |
| void | dummy () |
| dummy-function to make InetInfo polymorphic | |
Protected Attributes | |
| AccessNet * | accessNetModule |
| int | nodeID |
Definition at line 32 of file InetInfo.h.
| InetInfo::InetInfo | ( | uint32_t | type, | |
| int | moduleId, | |||
| cObject ** | context | |||
| ) |
constructor
Definition at line 25 of file InetInfo.cc.
: PeerInfo(type, moduleId, context) { accessNetModule = NULL; }
| void InetInfo::dummy | ( | ) | [protected, virtual] |
dummy-function to make InetInfo polymorphic
Reimplemented from PeerInfo.
Definition at line 30 of file InetInfo.cc.
{}
| AccessNet* InetInfo::getAccessNetModule | ( | ) | [inline] |
Definition at line 45 of file InetInfo.h.
Referenced by InetUnderlayConfigurator::handleTimerEvent(), InetUnderlayConfigurator::migrateNode(), and InetUnderlayConfigurator::preKillNode().
{ return accessNetModule; };
| int InetInfo::getNodeID | ( | ) | [inline] |
Definition at line 46 of file InetInfo.h.
Referenced by InetUnderlayConfigurator::handleTimerEvent(), InetUnderlayConfigurator::migrateNode(), and InetUnderlayConfigurator::preKillNode().
{ return nodeID; };
| void InetInfo::setAccessNetModule | ( | AccessNet * | accessNetModule | ) | [inline] |
setter and getter
Definition at line 43 of file InetInfo.h.
Referenced by InetUnderlayConfigurator::createNode(), and InetUnderlayConfigurator::migrateNode().
{ this->accessNetModule = accessNetModule; };
| void InetInfo::setNodeID | ( | int | nodeID | ) | [inline] |
Definition at line 44 of file InetInfo.h.
Referenced by InetUnderlayConfigurator::createNode(), and InetUnderlayConfigurator::migrateNode().
AccessNet* InetInfo::accessNetModule [protected] |
Definition at line 51 of file InetInfo.h.
Referenced by getAccessNetModule(), and InetInfo().
int InetInfo::nodeID [protected] |
Definition at line 52 of file InetInfo.h.
Referenced by getNodeID().
1.7.1