X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Ffg_io.hxx;h=c4eff1b8b95850ffdd0ce10f73461dca7ca4ea47;hb=b587400846111cc4d6713dcdd38b715c97923d5a;hp=aa377c18298eff61e6f7d318c0293dce8d2fa969;hpb=980012e1682fdb27c9b9ec27edea0b549d603f9d;p=flightgear.git diff --git a/src/Main/fg_io.hxx b/src/Main/fg_io.hxx index aa377c182..c4eff1b8b 100644 --- a/src/Main/fg_io.hxx +++ b/src/Main/fg_io.hxx @@ -2,7 +2,7 @@ // // Written by Curtis Olson, started November 1999. // -// Copyright (C) 1999 Curtis L. Olson - curt@flightgear.org +// Copyright (C) 1999 Curtis L. Olson - http://www.flightgear.org/~curt // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as @@ -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$ @@ -29,10 +29,7 @@ #include #include -#include STL_STRING - -SG_USING_STD(vector); -SG_USING_STD(string); +#include class FGProtocol; @@ -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; };