From: curt Date: Tue, 23 Nov 1999 05:47:16 +0000 (+0000) Subject: Initial revision of FGFS "Native" I/O protocal. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=8c70ec70260280552f7264441d6063736e2cf03b;p=flightgear.git Initial revision of FGFS "Native" I/O protocal. --- diff --git a/src/Network/Makefile.am b/src/Network/Makefile.am index b5ecbb3ca..f08134a39 100644 --- a/src/Network/Makefile.am +++ b/src/Network/Makefile.am @@ -6,6 +6,7 @@ libNetwork_a_SOURCES = \ fg_serial.cxx fg_serial.hxx \ fg_socket.cxx fg_socket.hxx \ protocol.cxx protocol.hxx \ + native.cxx native.hxx \ garmin.cxx garmin.hxx \ nmea.cxx nmea.hxx \ pve.cxx pve.hxx \ diff --git a/src/Network/native.cxx b/src/Network/native.cxx new file mode 100644 index 000000000..fffabba3f --- /dev/null +++ b/src/Network/native.cxx @@ -0,0 +1,97 @@ +// native.cxx -- FGFS "Native" protocal class +// +// Written by Curtis Olson, started November 1999. +// +// Copyright (C) 1999 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$ + + +#include +#include +#include