irisEvent.cc
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
00019 #ifndef event_INC
00020 #define event_INC
00021
00022 #include "irisEvent.h"
00023
00024 string IrisEvent::toString()
00025 {
00026 stringstream str;
00027 str << "Time: " << Simulator::Now()
00028 << " src: " << this->src_id
00029
00030
00031 << " vc: " << this->vc;
00032 return str.str();
00033 }
00034
00035 IrisEvent::IrisEvent()
00036 {
00037 src_id = -1;
00038 vc = 0;
00039 }
00040
00041 IrisEvent::~IrisEvent()
00042 {
00043
00044
00045 }
00046
00047 #endif