// @package Services #pragma once #include "PolyGlobals.h" #include #include #include #include #ifdef MSVC #include #endif using std::wstring; using std::string; namespace Polycode { class _PolyExport Logger { public: Logger(){} ~Logger(){} static void log(const char *format, ...); static void logw(const char *str); }; }