ifw-ccf  3.0.0-pre2
ctrlInstance.hpp
Go to the documentation of this file.
1 
4 #ifndef CCF_CONTROL_TEST_CTRL_INSTANCE_HPP
5 #define CCF_CONTROL_TEST_CTRL_INSTANCE_HPP
6 
7 namespace ccf::control::test {
8 
9  void Server();
10 
12  public:
15 
16  void ExecuteServer();
17  void StopServer();
18  private:
19  std::shared_ptr<std::thread> m_srv_thread;
20  };
21 }
22 
23 #endif // CCF_CONTROL_TEST_CTRL_INSTANCE_HPP
Definition: ctrlInstance.hpp:11
void StopServer()
Definition: ctrlInstance.cpp:29
~ServerInstance()
Definition: ctrlInstance.cpp:18
void ExecuteServer()
Definition: ctrlInstance.cpp:21
ServerInstance()
Definition: ctrlInstance.cpp:15
Definition: ctrlInstance.cpp:13
void Server()
Definition: ctrlInstance.cpp:43