rcpp_framework/modules/list_page/list_page.h

27 lines
392 B
C
Raw Normal View History

2020-12-26 00:18:11 +01:00
#ifndef LIST_PAGE_H
#define LIST_PAGE_H
#include "core/containers/vector.h"
#include "core/string.h"
2020-12-26 00:18:11 +01:00
#include "core/object.h"
#include "core/http/request.h"
2020-12-26 00:18:11 +01:00
class ListPage : public Object {
RCPP_OBJECT(ListPage, Object);
public:
void index(Request *request);
void load();
2020-12-26 00:18:11 +01:00
ListPage();
~ListPage();
Vector<String> list_entries;
String folder;
2020-12-26 00:18:11 +01:00
};
#endif