/* -*- C++ -*- * Copyright ©2008 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_SUNPOS_H #define XFORBIT_SUNPOS_H #include "magellan/xforbit.h" class XfOrbit_Sunpos : public XfOrbit { public: XfOrbit_Sunpos(long _timeorigin); virtual ~XfOrbit_Sunpos() { } virtual void reset(void); static XfOrbit* parser( ConfigLexer* lex, const std::string& type, const std::string& subtype = "" ); private: long timeorigin; }; #endif