]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/viewmgr.hxx
Improve timing statistics
[flightgear.git] / src / Main / viewmgr.hxx
index c296b71559b50e2018d585e3272c58d52f1ebcb3..6461af11a90fdaad16b99e92ab235470d7610d67 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
@@ -69,14 +70,12 @@ public:
       
     // setters
     void clear();
-    inline void set_view( const int v ) { current = v; }
+
     void add_view( FGViewer * v );
     
-    // copies current offset settings to current-view path...
-    void copyToCurrent ();
-
 private:
-
+    void do_bind();
+    
     list<const char*> tied_props;
 
     double axis_long;
@@ -136,6 +135,10 @@ private:
 
     bool stationary () const;
 
+    // copies current offset settings to current-view path...
+    void copyToCurrent ();
+    
+    bool inited;
     SGPropertyNode_ptr view_number;
     vector<SGPropertyNode_ptr> config_list;
     typedef std::vector<FGViewerPtr> viewer_list;