/* -*- C++ -*- * Copyright ©2005 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 PLUGININFO_ORBIT_H #define PLUGININFO_ORBIT_H #include "magellan/xforbit.h" #include "magellan/plugininfo.h" class PluginInfo_Orbit : public PluginInfo { public: PluginInfo_Orbit() { } virtual ~PluginInfo_Orbit() { } typedef XfOrbit handled_class; handled_class* (*parser)( ConfigLexer*, const std::string&, const std::string& ); private: }; #endif