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