namespace Components { class News : public Component { public: News(); ~News(); #ifdef DEBUG const char* GetName() { return "News"; }; #endif bool UnitTest(); private: static std::thread Thread; }; }