FNSS C++ library
C++ API for the Fast Network Simulation Setup (FNSS) toolchain
 All Classes 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
void setName(const std::string &name_)
Definition: protocol-stack.cpp:11
std::string getName() const
Definition: protocol-stack.cpp:7
Definition: protocol-stack.h:18
Definition: property-container.h:15
ProtocolStack(const std::string &name_="")
Definition: protocol-stack.cpp:5