Go to the documentation of this file.
23 #if defined(_MSC_VER) && _MSC_VER < 1900
24 std::string
file_name(
"C:\\cygwin\\tmp\\inlib_log_file_");
26 std::string
file_name(
"C:\\cygwin64\\tmp\\inlib_log_file_");
29 std::string
file_name(
"/tmp/inlib_log_file_");
42 void write(
const std::string& a_string)
const {
44 if(::fprintf(
m_FILE,
"%s",a_string.c_str())<0) {}
46 void writef(
const char* a_format,...)
const {
50 va_start(
args,a_format);