#include <UDPAppBase.h>#include <UDPControlInfo_m.h>#include "UDPSocket.h"#include <IPAddressResolver.h>#include <CommonMessages_m.h>#include <GlobalNodeListAccess.h>#include <UnderlayConfiguratorAccess.h>#include <omnetpp.h>#include <OverlayKey.h>#include "SHA1.h"#include "TriggerTable.h"#include "I3Identifier.h"#include "I3IPAddress.h"#include "I3SubIdentifier.h"#include "I3IdentifierStack.h"#include "I3Trigger.h"#include "I3Message_m.h"#include "I3Message.h"#include "I3.h"Go to the source code of this file.
Functions | |
| std::ostream & | operator<< (std::ostream &os, const I3TriggerSet &t) |
| Define_Module (I3) | |
Definition in file I3.cc.
| Define_Module | ( | I3 | ) |
| std::ostream& operator<< | ( | std::ostream & | os, | |
| const I3TriggerSet & | t | |||
| ) |
Definition at line 49 of file I3.cc.
00050 { 00051 os << endl; 00052 00053 I3TriggerSet::iterator it; 00054 for (it = t.begin(); it != t.end(); it++) { 00055 os << *it << " in " << it->getInsertionTime() << "(" << 00056 (simTime() - it->getInsertionTime()) << ")" << endl; 00057 } 00058 return os; 00059 }
1.5.8