]> git.mxchange.org Git - flightgear.git/blob - src/Network/protocol.cxx
2954f04b659e3691e0d93c0e67cf83f00d582ff9
[flightgear.git] / src / Network / protocol.cxx
1 // protocol.cxx -- High level protocal class
2 //
3 // Written by Curtis Olson, started November 1999.
4 //
5 // Copyright (C) 1999  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
23
24 #include <Debug/logstream.hxx>
25
26 #include "protocol.hxx"
27
28
29 FGProtocol::FGProtocol() :
30     hz(0.0),
31     count_down(0),
32     enabled(false)
33 {
34 }
35
36
37 FGProtocol::~FGProtocol() {
38 }
39
40
41 // dummy open routine
42 bool FGProtocol::open() {
43     FG_LOG( FG_IO, FG_INFO, "dummy FGProtocol::open()" );
44     enabled = false;
45     return false;
46 }
47
48
49 // dummy process routine
50 bool FGProtocol::process() {
51     FG_LOG( FG_IO, FG_INFO, "dummy FGProtocol::process()" );
52     return false;
53 }
54
55
56 // dummy close routine
57 bool FGProtocol::close() {
58     FG_LOG( FG_IO, FG_INFO, "dummy FGProtocol::close()" );
59     return false;
60 }
61
62
63 // dummy close routine
64 bool FGProtocol::gen_message() {
65     FG_LOG( FG_IO, FG_INFO, "dummy FGProtocol::gen_message()" );
66     return false;
67 }
68
69
70 // dummy close routine
71 bool FGProtocol::parse_message() {
72     FG_LOG( FG_IO, FG_INFO, "dummy FGProtocol::close()" );
73     return false;
74 }
75
76