]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_io.hxx
Suggest NVIDIA Optimus to use the high-end GPU.
[flightgear.git] / src / Main / fg_io.hxx
index b5a2cbb1718f7dee12b231968de7b92246d8ab31..37c8fd531a9e5e450fafe89e8581b0077d30949b 100644 (file)
@@ -1,4 +1,4 @@
-// fg_io.hxx -- Higher level I/O managment routines
+// fg_io.hxx -- Higher level I/O management routines
 //
 // Written by Curtis Olson, started November 1999.
 //
@@ -16,7 +16,7 @@
 //
 // You should have received a copy of the GNU General Public License
 // along with this program; if not, write to the Free Software
-// Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 //
 // $Id$
 
 
 #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,27 @@ 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 );
+    void add_channel(const std::string& config);
+    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;
 };