log.h 141 B

12345678910
  1. // cotire example project
  2. #include <string>
  3. namespace logging {
  4. void error(const std::string& msg);
  5. void info(const std::string& msg);
  6. }