]> git.localhorst.tv Git - l2e.git/commitdiff
added forwarding header for map namespace
authorDaniel Karbach <daniel.karbach@localhorst.tv>
Sat, 29 Sep 2012 17:21:29 +0000 (19:21 +0200)
committerDaniel Karbach <daniel.karbach@localhorst.tv>
Sat, 29 Sep 2012 17:21:29 +0000 (19:21 +0200)
src/map/Area.h
src/map/Map.h
src/map/fwd.h [new file with mode: 0644]

index 9bca341c11fdbd6d977f7a042e8da98e63e10a12..9834f5c270bc916dfbe5da947301afc7cda7bce0 100644 (file)
@@ -8,18 +8,14 @@
 #ifndef MAP_AREA_H_
 #define MAP_AREA_H_
 
+#include "fwd.h"
 #include "../geometry/Vector.h"
+#include "../graphics/fwd.h"
 
 #include <SDL.h>
 
-namespace graphics {
-       class Sprite;
-}
-
 namespace map {
 
-class Tile;
-
 class Area {
 
 public:
index 9fb24afc9dd305e67d9e27d108e70621806dea11..57337605f3f0ed58b66bef01f75fccd27028c73f 100644 (file)
@@ -8,18 +8,14 @@
 #ifndef MAP_MAP_H_
 #define MAP_MAP_H_
 
+#include "fwd.h"
 #include "../geometry/Vector.h"
+#include "../graphics/fwd.h"
 
 #include <SDL.h>
 
-namespace graphics {
-       class Sprite;
-}
-
 namespace map {
 
-class Area;
-
 class Map {
 
 public:
diff --git a/src/map/fwd.h b/src/map/fwd.h
new file mode 100644 (file)
index 0000000..7ffe7a2
--- /dev/null
@@ -0,0 +1,19 @@
+/*
+ * fwd.h
+ *
+ *  Created on: Sep 29, 2012
+ *      Author: holy
+ */
+
+#ifndef MAP_FWD_H_
+#define MAP_FWD_H_
+
+namespace map {
+
+class Area;
+class Map;
+class Tile;
+
+}
+
+#endif /* MAP_FWD_H_ */