X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Ffg_io.hxx;h=c4eff1b8b95850ffdd0ce10f73461dca7ca4ea47;hb=d39841d2dfdf82e1d590ab331888e3a392d199c6;hp=b470aa59e0b00c2f35b367d2c3c91e62ef2cc5de;hpb=667e64e1ebc86a0c53112b92b53475898f315c36;p=flightgear.git diff --git a/src/Main/fg_io.hxx b/src/Main/fg_io.hxx index b470aa59e..c4eff1b8b 100644 --- a/src/Main/fg_io.hxx +++ b/src/Main/fg_io.hxx @@ -31,9 +31,6 @@ #include #include -using std::vector; -using std::string; - class FGProtocol; class FGIO : public SGSubsystem @@ -43,6 +40,7 @@ public: ~FGIO(); void init(); + void reinit(); void bind(); void unbind(); void update( double dt ); @@ -51,13 +49,13 @@ public: 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; + std::vector< FGProtocol* > io_channels; };