mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-02-20 15:14:26 +01:00
20 lines
311 B
C++
20 lines
311 B
C++
#ifndef STATIC_PAGE_FILE_H
|
|
#define STATIC_PAGE_FILE_H
|
|
|
|
#include "core/string.h"
|
|
|
|
#include "web/http/web_node.h"
|
|
|
|
class StaticPageFile : public WebNode {
|
|
RCPP_OBJECT(StaticPageFile, WebNode);
|
|
|
|
public:
|
|
void handle_request_main(Request *request);
|
|
|
|
void load();
|
|
|
|
StaticPageFile();
|
|
~StaticPageFile();
|
|
};
|
|
|
|
#endif |