#ifndef __DARKRL__SYSTEM_HPP__ #define __DARKRL__SYSTEM_HPP__ #include class System { public: System() = delete; static unsigned int CPUCores(); static void SetThreadName( std::thread& thread, const char* name ); }; #endif