From 15c384750f6ccc8f383df163a50e48afc4439fb4 Mon Sep 17 00:00:00 2001 From: Relintai Date: Fri, 4 Feb 2022 22:03:55 +0100 Subject: [PATCH] A comment. --- modules/paged_list/paged_list.h | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/modules/paged_list/paged_list.h b/modules/paged_list/paged_list.h index 98cb882..0f9df78 100644 --- a/modules/paged_list/paged_list.h +++ b/modules/paged_list/paged_list.h @@ -11,6 +11,7 @@ // inherit from StaticPage // (make the module a dependency) // Add PagedArticle as child -> rout everything to it the same way as now +// ListPage add bool -> pagination enabled class PagedList : public WebNode { RCPP_OBJECT(PagedList, WebNode); @@ -23,10 +24,11 @@ public: PagedList(); ~PagedList(); - ListPage *main_page; - PagedArticle *articles; String folder; String base_path; + + ListPage *main_page; + PagedArticle *articles; }; #endif \ No newline at end of file