]> git.mxchange.org Git - simgear.git/blob - Serial/serial.hxx
Added an FG_SERIAL type to the FG_LOG macro.
[simgear.git] / Serial / serial.hxx
1 // serial.hxx -- Unix serial I/O support
2 //
3 // Written by Curtis Olson, started November 1998.
4 //
5 // Copyright (C) 1998  Curtis L. Olson - curt@flightgear.org
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22 // (Log is kept at end of this file)
23
24
25 #ifndef _SERIAL_HXX
26 #define _SERIAL_HXX
27
28
29 #ifndef __cplusplus
30 # error This library requires C++
31 #endif
32
33
34 #include <string>
35
36 // if someone know how to do this all with C++ streams let me know
37 #include <stdio.h>
38
39
40 class fgSERIAL
41 {
42
43 private:
44
45     int fd;
46     bool dev_open;
47
48 public:
49
50     fgSERIAL();
51     fgSERIAL(const string& device, int baud);
52
53     ~fgSERIAL();
54
55     bool open_port(const string& device);
56     bool close_port();
57     bool set_baud(int baud);
58     string read_port();
59     int write_port(const string& value);
60
61     inline bool is_enabled() { return dev_open; }
62 };
63
64
65 #endif // _SERIAL_HXX
66
67
68 // $Log$
69 // Revision 1.1  1998/11/16 13:53:02  curt
70 // Initial revision.
71 //