libknx
handle.hpp
Go to the documentation of this file.
1 #include "debug.hpp"
2 #include "connection.hpp"
3 
4 #include <thread>
5 
10 namespace knx {
11 
17 class KNX_IMPORT_EXPORT handle
18 {
19 public:
23  ~handle();
24 private:
26  knx::connection & connection;
28  std::thread background;
29 };
30 
31 }
Thread management for connection handling.
Definition: handle.hpp:17
separated namespace to embed all libknx related classes
Definition: connection.hpp:14
This class handles the ip connection(s) to the knx gateway.
Definition: connection.hpp:25