/* -*- 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 PLUGINS_H #define PLUGINS_H #include #include "plugininfo_display.h" #include "magellan/plugininfo_map.h" #include "magellan/plugininfo_orbit.h" #include "magellan/plugininfo_content.h" #include "magellan/plugininfo_output.h" #include "magellan/plugininfo_viewport.h" extern std::list map_plugins; extern std::list orbit_plugins; extern std::list content_plugins; extern std::list output_plugins; extern std::list viewport_plugins; extern std::list display_plugins; void load_plugins(void); void unload_plugins(void); #endif