X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=simgear%2Fio%2Fsg_serial.hxx;h=bb51ce33afb0bdd07579c6f04048c4bd4ae39711;hb=dc09a50472890ac706d3c76d8af34cc3682ada0c;hp=e37fa722198e8104f3989e54f7589842e6ca6e1c;hpb=bf0d95145d8a49410b6ed5ea6c451ee916b9fc02;p=simgear.git diff --git a/simgear/io/sg_serial.hxx b/simgear/io/sg_serial.hxx index e37fa722..bb51ce33 100644 --- a/simgear/io/sg_serial.hxx +++ b/simgear/io/sg_serial.hxx @@ -5,7 +5,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 @@ -55,7 +55,7 @@ class SGSerial : public SGIOChannel { string device; string baud; - FGSerialPort port; + SGSerialPort port; char save_buf[ 2 * SG_IO_MAX_MSG_SIZE ]; int save_len; @@ -97,10 +97,10 @@ public: // close port bool close(); - /** Return the serial port device name */ + /** @return the serial port device name */ inline string get_device() const { return device; } - /** Return the baud rate */ + /** @return the baud rate */ inline string get_baud() const { return baud; } };