FNSS ns-3 adapter
ns-3 adapter for the Fast Network Simulation Setup (FNSS) toolchain
 All Classes Files Functions Typedefs Pages
fnss-event.h
1 #ifndef FNSS_EVENT_H
2 #define FNSS_EVENT_H
3 
4 #include "ns3/event-impl.h"
5 #include "ns3/object.h"
6 #include "ns3/core-module.h"
7 
8 #include <string>
9 
10 namespace ns3 {
11 
17 class FNSSEvent : public Object, public EventImpl {
18 public:
19  static TypeId GetTypeId (void);
20 
21  FNSSEvent();
22 
23  virtual ~FNSSEvent();
24 
25  virtual void Notify();
26 
30  void Unref() {
31  EventImpl::Unref();
32  }
33 
37  void Ref() {
38  EventImpl::Unref();
39  }
40 
41 private:
42  std::string m_eventId;
43 };
44 
45 }
46 
47 #endif
Definition: fnss-event.h:17
void Ref()
Definition: fnss-event.h:37
void Unref()
Definition: fnss-event.h:30