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

56 lines
1.4 KiB
C++
Raw Normal View History

// garmin.hxx -- Garmin protocol class
1999-11-19 02:10:24 +00:00
//
// Written by Curtis Olson, started November 1999.
//
// Copyright (C) 1999 Curtis L. Olson - http://www.flightgear.org/~curt
1999-11-19 02:10:24 +00:00
//
// 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.
1999-11-19 02:10:24 +00:00
//
// $Id$
#ifndef _FG_GARMIN_HXX
#define _FG_GARMIN_HXX
#include "nmea.hxx"
1999-11-19 02:10:24 +00:00
namespace NMEA
{
// Garmin proprietary messages
namespace GARMIN
{
const unsigned int PGRMZ = (1<<0);
}
}
1999-11-19 02:10:24 +00:00
class FGGarmin : public FGNMEA {
1999-11-19 02:10:24 +00:00
protected:
unsigned int mGarminMessages;
bool mMetric;
1999-11-19 02:10:24 +00:00
// process a Garmin sentence
virtual void parse_message(const std::vector<std::string>& tokens);
1999-11-19 02:10:24 +00:00
public:
1999-11-19 02:10:24 +00:00
FGGarmin();
~FGGarmin();
virtual bool gen_message();
1999-11-19 02:10:24 +00:00
};
#endif // _FG_GARMIN_HXX