]> git.mxchange.org Git - flightgear.git/commitdiff
Make it compile, link and run again (pfew\!)
authorehofman <ehofman>
Sun, 19 Sep 2004 18:34:47 +0000 (18:34 +0000)
committerehofman <ehofman>
Sun, 19 Sep 2004 18:34:47 +0000 (18:34 +0000)
src/GUI/gui_funcs.cxx
src/Model/acmodel.hxx
src/MultiPlayer/mpplayer.hxx
src/Scenery/hitlist.hxx
src/Scenery/scenery.hxx
src/Scenery/tileentry.hxx

index a4a30ee62e8ecb8619907c07976b4a347c98eec4..5a05d8872fa01419ba018bcb2c07dcd7fae1d88f 100644 (file)
@@ -60,6 +60,8 @@
 # endif
 #endif
 
+#include <plib/ssg.h>
+
 #include <simgear/constants.h>
 #include <simgear/debug/logstream.hxx>
 #include <simgear/misc/sg_path.hxx>
index a59bd954a111a0b131a26fa710b4bd64102919ed..ddafbaf3448a135bc5d1ccfdc717dd01316f3d06 100644 (file)
@@ -12,6 +12,8 @@
 
 #include <vector>
 
+#include <plib/ssg.h>
+
 SG_USING_STD(string);
 SG_USING_STD(vector);
 
index c16d9f1b0de3e2a707ea314ef102f97d0c4c66fb..4876d1e47156fe46e441932de966f8edc16ba9cb 100644 (file)
@@ -52,7 +52,6 @@ SG_USING_STD(string);
 // Number of seconds before a player is consider to be lost
 #define TIME_TO_LIVE 10
 
-
 class ssgEntity;
 class ssgTransform;
 
index 7956b343eaa75b1f488657f61c1dd284306431db..f79d1e9fe83a3462bfb0c6ce62d0adb23016e4e7 100644 (file)
 
 #include <vector>
 
-#include <plib/ssg.h>
-
 SG_USING_STD(vector);
 
+class ssgEntity;
+
 class FGHitRec {
 
 private:
index 0ba923cd4a1e4404ba15f9b1a8fd7f258aa89f13..f2e77ec972c37f8a1c7e795b34e2d139642ef0ba 100644 (file)
 # error This library requires C++
 #endif                                   
 
-
 #include <plib/sg.h>
-#include <plib/ssg.h>
 
 #include <simgear/structure/subsystem_mgr.hxx>
 #include <simgear/math/point3d.hxx>
 
 
+class ssgRoot;
+class ssgBranch;
+
 // Define a structure containing global scenery parameters
 class FGScenery : public SGSubsystem {
     // center of current scenery chunk
index d3476c061d54ca4a923cdaed8521d153a3c16076..a979e677bf757be7fd65aecfbd3e2bc7220fd4ca 100644 (file)
@@ -38,8 +38,6 @@
 #include <vector>
 #include STL_STRING
 
-#include <plib/ssg.h>          // plib includes
-
 #include <simgear/bucket/newbucket.hxx>
 #include <simgear/math/point3d.hxx>
 #include <simgear/misc/sg_path.hxx>
@@ -56,6 +54,13 @@ typedef vector < Point3D > point_list;
 typedef point_list::iterator point_list_iterator;
 typedef point_list::const_iterator const_point_list_iterator;
 
+class ssgLeaf;
+class ssgBranch;
+class ssgTransform;
+class ssgSelector;
+class ssgRangeSelector;
+class ssgVertexArray;
+
 class FGTileEntry;