blob: 037a725b90bd5f2125da0cf5d3b1f51f1bde6e07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#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;
|