blob: 287c975a6be517c6b9f914659f21c1f6a6e1e42f (
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 "static-files.h"
#include <iostream>
using namespace std::string_literals;
std::string static_files_plugin::name()
{
return "static-files";
}
static_files_plugin::static_files_plugin()
{
//std::cout << "Plugin constructor" << std::endl;
}
static_files_plugin::~static_files_plugin()
{
//std::cout << "Plugin destructor" << std::endl;
}
std::string static_files_plugin::generate_page(std::string path)
{
return "Static Files "s + path;
}
|