/* -*- 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_MAP_H #define PLUGININFO_MAP_H #include "magellan/plugininfo.h" #include "magellan/xfmap.h" class PluginInfo_Map : public PluginInfo { public: PluginInfo_Map() { } virtual ~PluginInfo_Map() { } typedef XfMap handled_class; // Parser handled_class* (*parser)( ConfigLexer*, const std::string&, const std::string& ); private: }; #endif