#ifndef OUTPUT_HH #define OUTPUT_HH #include using std::string; /* Output the string in a messagebox if available, to stdout with a trailing newline if not. */ void output_string(const string &str); #endif