#pragma once #include "../../plugin_interface.h" class webbox_plugin: public webserver_plugin_interface { public: webbox_plugin(); ~webbox_plugin(); std::string name(); std::string generate_page(std::string path); }; extern "C" BOOST_SYMBOL_EXPORT webbox_plugin webserver_plugin; webbox_plugin webserver_plugin;