FNSS ns-3 adapter
ns-3 adapter for the Fast Network Simulation Setup (FNSS) toolchain
 All Classes Files Functions Typedefs Pages
protocol-stack.h
1 #ifndef PROTOCOL_STACK_H
2 #define PROTOCOL_STACK_H
3 
4 #include "property-container.h"
5 
6 #include <string>
7 
8 namespace fnss {
9 
19 public:
25  ProtocolStack(const std::string &name = "");
26 
32  std::string getName() const;
33 
39  void setName(const std::string &name);
40 
41 private:
45  std::string name;
46 };
47 
48 } //namespace
49 
50 #endif //PROTOCOL_STACK_H
std::string getName() const
Definition: protocol-stack.cpp:9
Definition: protocol-stack.h:18
void setName(const std::string &name)
Definition: protocol-stack.cpp:13
Definition: property-container.h:15
ProtocolStack(const std::string &name="")
Definition: protocol-stack.cpp:5