| 50 | } |
| 51 | |
| 52 | thread_continuous::thread_continuous(std::function<void()> func) |
| 53 | : stop_thread(false), thread(NULL), thread_running(false) { |
| 54 | this->func = func; |
| 55 | } |
| 56 | |
| 57 | bool thread_continuous::get_thread_running() { return this->thread_running; } |
| 58 |
nothing calls this directly
no outgoing calls
no test coverage detected