#include "webbox.h" #include using namespace std::string_literals; std::string webbox_plugin::name() { return "webbox"; } webbox_plugin::webbox_plugin() { //std::cout << "Plugin constructor" << std::endl; } webbox_plugin::~webbox_plugin() { //std::cout << "Plugin destructor" << std::endl; } std::string webbox_plugin::generate_page(std::string path) { return "Webbox "s + path; }