]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/viewmgr.hxx
#591: night-time rendering issues, avoid negative color values
[flightgear.git] / src / Main / viewmgr.hxx
index c14347e26921205a34da761f59b30d9ad94bc443..4906f87f63be85aa77ea5ffc732daa835f1a9568 100644 (file)
@@ -29,6 +29,7 @@
 
 #include <simgear/compiler.h>
 #include <simgear/structure/subsystem_mgr.hxx>
+#include <simgear/props/props.hxx>
 #include <simgear/math/SGMath.hxx>
 
 // forward decls
@@ -75,7 +76,7 @@ public:
 private:
     void do_bind();
     
-    list<const char*> tied_props;
+    std::list<const char*> tied_props;
 
     double axis_long;
     double axis_lat;
@@ -139,7 +140,7 @@ private:
     
     bool inited;
     SGPropertyNode_ptr view_number;
-    vector<SGPropertyNode_ptr> config_list;
+    std::vector<SGPropertyNode_ptr> config_list;
     typedef std::vector<FGViewerPtr> viewer_list;
     viewer_list views;
     SGVec3d abs_viewer_position;