mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
32 lines
590 B
C++
32 lines
590 B
C++
#ifndef PAGED_LIST_H
|
|
#define PAGED_LIST_H
|
|
|
|
#include "core/string.h"
|
|
|
|
#include "core/http/web_node.h"
|
|
|
|
#include "modules/list_page/list_page.h"
|
|
#include "modules/paged_article/paged_article.h"
|
|
|
|
// inherit from StaticPage
|
|
// (make the module a dependency)
|
|
// Add PagedArticle as child -> rout everything to it the same way as now
|
|
|
|
class PagedList : public WebNode {
|
|
RCPP_OBJECT(PagedList, WebNode);
|
|
|
|
public:
|
|
void handle_request_main(Request *request);
|
|
|
|
void load();
|
|
|
|
PagedList();
|
|
~PagedList();
|
|
|
|
ListPage *main_page;
|
|
PagedArticle *articles;
|
|
String folder;
|
|
String base_path;
|
|
};
|
|
|
|
#endif |