]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_io.hxx
Improve timing statistics
[flightgear.git] / src / Main / fg_io.hxx
index c4eff1b8b95850ffdd0ce10f73461dca7ca4ea47..d10e9c67b9346b4b9a045dc66be88887af45d184 100644 (file)
@@ -27,6 +27,7 @@
 
 #include <simgear/compiler.h>
 #include <simgear/structure/subsystem_mgr.hxx>
+#include <simgear/props/props.hxx>
 
 #include <vector>
 #include <string>
@@ -45,7 +46,7 @@ public:
     void unbind();
     void update( double dt );
 
-    void shutdown_all();
+    void shutdown();
 
 private:
 
@@ -55,7 +56,11 @@ private:
 
     // define the global I/O channel list
     //io_container global_io_list;
-    std::vector< FGProtocol* > io_channels;
+    
+    typedef std::vector< FGProtocol* > ProtocolVec;
+    ProtocolVec io_channels;
+    
+    SGPropertyNode_ptr _realDeltaTime;
 };