mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
19 lines
286 B
C++
19 lines
286 B
C++
#include "static_page.h"
|
|
|
|
#include "core/http/request.h"
|
|
#include "core/file_cache.h"
|
|
#include "core/html/html_builder.h"
|
|
|
|
void StaticPage::handle_request_main(Request *request) {
|
|
}
|
|
|
|
void StaticPage::load() {
|
|
}
|
|
|
|
StaticPage::StaticPage() :
|
|
WebNode() {
|
|
}
|
|
|
|
StaticPage::~StaticPage() {
|
|
}
|