/* -*- 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_CONTENT_H #define PLUGININFO_CONTENT_H #include #include "magellan/plugininfo.h" #include "magellan/content.h" class PluginInfo_Content : public PluginInfo { public: PluginInfo_Content() { } virtual ~PluginInfo_Content() { } typedef Content handled_class; handled_class* (*parser)( ConfigLexer*, const std::string&, const std::string& ); private: }; #endif