// serial.hxx -- Unix serial I/O support // // Written by Curtis Olson, started November 1998. // // Copyright (C) 1998 Curtis L. Olson - curt@flightgear.org // // This program is free software; you can redistribute it and/or // modify it under the terms of the GNU General Public License as // published by the Free Software Foundation; either version 2 of the // License, or (at your option) any later version. // // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU // General Public License for more details. // // 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. // // $Id$ // (Log is kept at end of this file) #ifndef _SERIAL_HXX #define _SERIAL_HXX #ifndef __cplusplus # error This library requires C++ #endif #ifdef HAVE_CONFIG_H # include #endif #if defined( WIN32 ) && !defined( __CYGWIN__) && !defined( __CYGWIN32__ ) # include #endif #include #include STL_STRING FG_USING_STD(string); // if someone know how to do this all with C++ streams let me know // #include class fgSERIAL { #if defined( WIN32 ) && !defined( __CYGWIN__) && !defined( __CYGWIN32__ ) typedef HANDLE fd_type; #else typedef int fd_type; #endif private: fd_type fd; bool dev_open; public: fgSERIAL(); fgSERIAL(const string& device, int baud); ~fgSERIAL(); bool open_port(const string& device); bool close_port(); bool set_baud(int baud); string read_port(); int write_port(const string& value); inline bool is_enabled() { return dev_open; } }; #endif // _SERIAL_HXX // $Log$ // Revision 1.1 1999/04/05 21:32:34 curt // Initial revision // // Revision 1.5 1999/03/02 01:01:58 curt // Tweaks for compiling with native SGI compilers. // // Revision 1.4 1999/02/26 22:08:13 curt // Added initial support for native SGI compilers. // // Revision 1.3 1999/02/02 20:13:24 curt // MSVC++ portability changes by Bernie Bright: // // Lib/Serial/serial.[ch]xx: Initial Windows support - incomplete. // Simulator/Astro/stars.cxx: typo? included instead of // Simulator/Cockpit/hud.cxx: Added Standard headers // Simulator/Cockpit/panel.cxx: Redefinition of default parameter // Simulator/Flight/flight.cxx: Replaced cout with FG_LOG. Deleted // Simulator/Main/fg_init.cxx: // Simulator/Main/GLUTmain.cxx: // Simulator/Main/options.hxx: Shuffled dependency // Simulator/Objects/material.hxx: // Simulator/Time/timestamp.hxx: VC++ friend kludge // Simulator/Scenery/tile.[ch]xx: Fixed using std::X declarations // Simulator/Main/views.hxx: Added a constant // // Revision 1.2 1998/11/30 17:15:30 curt // Having the class destructor close the fd was a bad idea ... especially if you // ever make a copy of the instance and then subsequently destroy either. // close_port() is now a separate member function. // // Revision 1.1 1998/11/16 13:53:02 curt // Initial revision. //