CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Yann Dirson <[EMAIL PROTECTED]> 05/03/10 20:06:20
Modified files:
src : map_create.hpp map_label.hpp network.cpp
network.hpp
Log message:
more include cleanup
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/map_create.hpp.diff?tr1=1.1&tr2=1.2&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/map_label.hpp.diff?tr1=1.7&tr2=1.8&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/network.cpp.diff?tr1=1.53&tr2=1.54&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/src/network.hpp.diff?tr1=1.23&tr2=1.24&r1=text&r2=text
Patches:
Index: wesnoth/src/map_create.hpp
diff -u wesnoth/src/map_create.hpp:1.1 wesnoth/src/map_create.hpp:1.2
--- wesnoth/src/map_create.hpp:1.1 Sat Mar 5 17:35:48 2005
+++ wesnoth/src/map_create.hpp Thu Mar 10 20:06:20 2005
@@ -1,8 +1,8 @@
#ifndef MAP_CREATE_HPP_INCLUDED
#define MAP_CREATE_HPP_INCLUDED
-#include <config.hpp>
-#include <mapgen.hpp>
+class config;
+class map_generator;
#include <string>
Index: wesnoth/src/map_label.hpp
diff -u wesnoth/src/map_label.hpp:1.7 wesnoth/src/map_label.hpp:1.8
--- wesnoth/src/map_label.hpp:1.7 Wed Oct 27 19:28:07 2004
+++ wesnoth/src/map_label.hpp Thu Mar 10 20:06:20 2005
@@ -1,7 +1,7 @@
#ifndef MAP_LABEL_HPP_INCLUDED
#define MAP_LABEL_HPP_INCLUDED
-#include "config.hpp"
+class config;
#include "map.hpp"
#include <map>
Index: wesnoth/src/network.cpp
diff -u wesnoth/src/network.cpp:1.53 wesnoth/src/network.cpp:1.54
--- wesnoth/src/network.cpp:1.53 Sat Mar 5 10:54:25 2005
+++ wesnoth/src/network.cpp Thu Mar 10 20:06:20 2005
@@ -1,5 +1,6 @@
#include "global.hpp"
+#include "config.hpp"
#include "log.hpp"
#include "network.hpp"
#include "network_worker.hpp"
Index: wesnoth/src/network.hpp
diff -u wesnoth/src/network.hpp:1.23 wesnoth/src/network.hpp:1.24
--- wesnoth/src/network.hpp:1.23 Sun Feb 27 18:15:21 2005
+++ wesnoth/src/network.hpp Thu Mar 10 20:06:20 2005
@@ -1,7 +1,7 @@
#ifndef NETWORK_HPP_INCLUDED
#define NETWORK_HPP_INCLUDED
-#include "config.hpp"
+class config;
#include "SDL_net.h"