1 /*
2    Copyright (C) 2004 by James Gregory
3    Part of the GalaxyHack project
4 
5    This program is free software; you can redistribute it and/or modify
6    it under the terms of the GNU General Public License.
7    This program is distributed in the hope that it will be useful,
8    but WITHOUT ANY WARRANTY.
9 
10    See the COPYING file for more details.
11 */
12 
13 #ifndef GUARD_Logging
14 #define GUARD_Logging
15 
16 #include <string>
17 
18 void WriteLog(const std::string& logMsg);
19 void WriteText(const std::string& logMsg, bool toFile);
20 
21 #endif
22 
23