YourCityInvadedByAliens
Documentation for code of the game
ylog.h
Go to the documentation of this file.
1 #pragma once
2 #include <string>
3 
4 class YLog {
5  public:
6  static void info(const std::string &sTag, const std::string &sMessage);
7  static void err(const std::string &sTag, const std::string &sMessage);
8  static void throw_err(const std::string &sTag, const std::string &sMessage);
9 };
YLog::err
static void err(const std::string &sTag, const std::string &sMessage)
Definition: ylog.cpp:13
YLog
Definition: ylog.h:4
YLog::info
static void info(const std::string &sTag, const std::string &sMessage)
Definition: ylog.cpp:8
YLog::throw_err
static void throw_err(const std::string &sTag, const std::string &sMessage)
Definition: ylog.cpp:18