#pragma once #include "../../plugin_interface.h" class static_files_plugin: public webserver_plugin_interface { public: static_files_plugin(); ~static_files_plugin(); std::string name(); std::string generate_page( std::function<std::string(const std::string& key)>& GetServerParam, std::function<std::string(const std::string& key)>& GetRequestParam, // request including body (POST...) std::function<void(const std::string& key, const std::string& value)>& SetResponseHeader // to be added to result string ); }; extern "C" BOOST_SYMBOL_EXPORT static_files_plugin webserver_plugin; static_files_plugin webserver_plugin;