blob: 7fe9fa7e749c315782d2b6a5ec0bf9be3aa5f9f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
#include "webbox.h"
#include <iostream>
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;
}
|