summaryrefslogtreecommitdiffhomepage
path: root/plugins/cgi/cgi.h
blob: 467a6c492f7e30164b6e629e622f004b7051a1ea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#pragma once

#include "../../plugin_interface.h"

class cgi_plugin: public webserver_plugin_interface 
{
public:
 cgi_plugin();
 ~cgi_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 cgi_plugin webserver_plugin;
cgi_plugin webserver_plugin;