/* -*- C++ -*- * Copyright ©2004 Hugo Mills * * This software is distributed under the terms of the GNU GPL v3 * For more information on the GPL, see the file COPYING or * visit http://www.gnu.org/ * * This software is distributed without warranty */ #ifndef XFORBIT_FIXED_H #define XFORBIT_FIXED_H #include "magellan/xforbit.h" class XfOrbit_Fixed : public XfOrbit { public: XfOrbit_Fixed(double lon, double lat); static XfOrbit* parser( ConfigLexer* lex, const std::string& type, const std::string& subtype = "" ); }; #endif