// // Created by versustune on 22.02.20. // #pragma once #ifndef ELIYA_LOGGING_H #define ELIYA_LOGGING_H #include class Logging { public: static void error(std::basic_string error, std::basic_string module) noexcept; static void log(const char* log, const char* module) noexcept; }; #endif //ELIYA_LOGGING_H