aegis-dos-protection/source/Threads/Thread.cpp

6 lines
105 B
C++
Raw Normal View History

2021-10-23 14:53:40 +00:00
#include "Threads/Thread.hpp"
Thread::Thread() : _quit(false) {}
void Thread::quit() { _quit = true; }