mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-02-20 15:14:26 +01:00
19 lines
312 B
C++
19 lines
312 B
C++
|
#include "static_page_file.h"
|
||
|
|
||
|
#include "web/http/request.h"
|
||
|
#include "web/file_cache.h"
|
||
|
#include "web/html/html_builder.h"
|
||
|
|
||
|
void StaticPageFile::handle_request_main(Request *request) {
|
||
|
}
|
||
|
|
||
|
void StaticPageFile::load() {
|
||
|
}
|
||
|
|
||
|
StaticPageFile::StaticPageFile() :
|
||
|
WebNode() {
|
||
|
}
|
||
|
|
||
|
StaticPageFile::~StaticPageFile() {
|
||
|
}
|