/* -*- 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_H #define PLUGININFO_H #include #include "magellan/configlexer.h" class PluginInfo { public: PluginInfo() { } virtual ~PluginInfo() { } // These should be set by the plugin itself std::string name; std::string author; std::string copyright; int version; // These are set by the plugin loader std::string file; void* library; private: }; #endif