1 #ifndef BITES_THREAD_HPP_INCLUDED
2 #define BITES_THREAD_HPP_INCLUDED
68 m_thread =
new std::thread(&Thread::run,
this);
83 std::thread* m_thread = NULL;
88 virtual void run() = 0;
93 #endif // BITES_THREAD_HPP_INCLUDED
Definition: Thread.hpp:49
void join()
Definition: Thread.hpp:74
void start()
Definition: Thread.hpp:66
~Thread()
Definition: Thread.hpp:55