mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-04-28 09:44:58 +02: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() {
|
|
}
|