]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_io.hxx
Improve timing statistics
[flightgear.git] / src / Main / fg_io.hxx
index 146f57087537098e3fee3595c94fbea0ba98a022..d10e9c67b9346b4b9a045dc66be88887af45d184 100644 (file)
 
 #include <simgear/compiler.h>
 #include <simgear/structure/subsystem_mgr.hxx>
+#include <simgear/props/props.hxx>
 
 #include <vector>
-#include STL_STRING
-
-SG_USING_STD(vector);
-SG_USING_STD(string);
+#include <string>
 
 class FGProtocol;
 
@@ -43,21 +41,26 @@ public:
     ~FGIO();
 
     void init();
+    void reinit();
     void bind();
     void unbind();
     void update( double dt );
 
-    void shutdown_all();
+    void shutdown();
 
 private:
 
-    FGProtocol* parse_port_config( const string& cfgstr );
+    FGProtocol* parse_port_config( const std::string& cfgstr );
 
 private:
 
     // define the global I/O channel list
     //io_container global_io_list;
-    vector< FGProtocol* > io_channels;
+    
+    typedef std::vector< FGProtocol* > ProtocolVec;
+    ProtocolVec io_channels;
+    
+    SGPropertyNode_ptr _realDeltaTime;
 };