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