kepka/cotire/src/log.h

11 lines
141 B
C++

// cotire example project
#include <string>
namespace logging {
void error(const std::string& msg);
void info(const std::string& msg);
}