rcpp_framework/modules/folder_pages/static_folder_page.cpp

22 lines
394 B
C++

#include "static_folder_page.h"
#include "core/http/request.h"
#include <iostream>
#include "core/file_cache.h"
#include "core/database/database_manager.h"
#include "core/html/html_builder.h"
void StaticFolderPage::handle_request_main(Request *request) {
}
void StaticFolderPage::load() {
}
StaticFolderPage::StaticFolderPage() :
WebNode() {
}
StaticFolderPage::~StaticFolderPage() {
}