#ifndef __TRACYPROFILER_HPP__ #define __TRACYPROFILER_HPP__ #include #include namespace tracy { class Profiler { public: Profiler(); ~Profiler(); private: void Worker(); std::thread m_thread; std::atomic m_shutdown; }; }; #endif