X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FMain%2Ffg_io.hxx;h=c4eff1b8b95850ffdd0ce10f73461dca7ca4ea47;hb=d39841d2dfdf82e1d590ab331888e3a392d199c6;hp=163d96f07d3836533bb5886c25d3652cdc30b542;hpb=1fd92702678bcf4a32f888fe3014c684e0235870;p=flightgear.git diff --git a/src/Main/fg_io.hxx b/src/Main/fg_io.hxx index 163d96f07..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$ @@ -25,27 +25,38 @@ #define _FG_IO_HXX -#include "Include/compiler.h" +#include +#include -// #include +#include +#include -// #ifdef FG_HAVE_STD_INCLUDES -// # include -// #else -// # include -// #endif +class FGProtocol; -#include +class FGIO : public SGSubsystem +{ +public: + FGIO(); + ~FGIO(); + void init(); + void reinit(); + void bind(); + void unbind(); + void update( double dt ); -// initialize I/O channels based on command line options (if any) -void fgIOInit(); + void shutdown_all(); +private: -// process any I/O work -void fgIOProcess(); + FGProtocol* parse_port_config( const std::string& cfgstr ); +private: -#endif // _FG_IO_HXX + // define the global I/O channel list + //io_container global_io_list; + std::vector< FGProtocol* > io_channels; +}; +#endif // _FG_IO_HXX