]> git.lizzy.rs Git - minetest-m13.git/blob - src/main.h
1372a1b120ec36e12fba558e34efb0db6aed5737
[minetest-m13.git] / src / main.h
1 /*
2 Minetest-m13
3 Copyright (C) 2010 celeron55, Perttu Ahola <celeron55@gmail.com>
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 as published by
7 the Free Software Foundation; either version 2 of the License, or
8 (at your option) any later version.
9
10 This program is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License along
16 with this program; if not, write to the Free Software Foundation, Inc.,
17 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 */
19
20 #ifndef MAIN_HEADER
21 #define MAIN_HEADER
22
23 // Settings
24 class Settings;
25 extern Settings *g_settings;
26
27 // Global profiler
28 class Profiler;
29 extern Profiler *g_profiler;
30
31 // Debug streams
32
33 #include <fstream>
34
35 extern std::ostream *dout_con_ptr;
36 extern std::ostream *derr_con_ptr;
37 extern std::ostream *dout_client_ptr;
38 extern std::ostream *derr_client_ptr;
39 extern std::ostream *dout_server_ptr;
40 extern std::ostream *derr_server_ptr;
41
42 #define dout_con (*dout_con_ptr)
43 #define derr_con (*derr_con_ptr)
44 #define dout_client (*dout_client_ptr)
45 #define derr_client (*derr_client_ptr)
46 #define dout_server (*dout_server_ptr)
47 #define derr_server (*derr_server_ptr)
48
49 #endif
50