1
0
Fork 0
flightgear/src/Network/rul.hxx

59 lines
1.3 KiB
C++
Raw Normal View History

// rul.hxx -- "RUL" protocal class (for some sort of motion platform
// some guy was building)
//
// Written by Curtis Olson, started November 1999.
//
// 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
// 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
2006-02-21 01:16:04 +00:00
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
//
// $Id$
#ifndef _FG_RUL_HXX
#define _FG_RUL_HXX
2000-02-15 03:30:01 +00:00
#include <simgear/compiler.h>
#include <string>
#include "protocol.hxx"
using std::string;
class FGRUL : public FGProtocol {
char buf[ 10 ];
int length;
public:
FGRUL();
~FGRUL();
bool gen_message();
bool parse_message();
// process work for this port
bool process();
};
#endif // _FG_RUL_HXX