FNSS C++ library
C++ API for the Fast Network Simulation Setup (FNSS) toolchain
 All Classes Functions Typedefs Pages
application.h
1 #ifndef APPLICATION_H
2 #define APPLICATION_H
3 
4 #include "property-container.h"
5 
6 #include <string>
7 
8 namespace fnss {
9 
20 public:
26  Application(const std::string &name_ = "");
27 
33  std::string getName() const;
34 
40  void setName(const std::string &name_);
41 
42 private:
46  std::string name;
47 };
48 
49 } //namespace
50 
51 #endif //APPLICATION_H
std::string getName() const
Definition: application.cpp:7
Definition: application.h:19
Application(const std::string &name_="")
Definition: application.cpp:5
void setName(const std::string &name_)
Definition: application.cpp:11
Definition: property-container.h:15