1 2 3 4 5 6 7 8 9 10 11 12
#pragma once #include <boost/config.hpp> #include <string> class BOOST_SYMBOL_VISIBLE webserver_plugin_interface { public: virtual std::string generate_page(std::string path) = 0; virtual ~webserver_plugin_interface(){} };