summaryrefslogtreecommitdiffhomepage
path: root/plugin_interface.h
blob: 72da0b9d65dd27efd95ef5df3fce769a25dddd1b (plain)
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(){}
};