rcpp_framework/modules/list_page/list_page.h

27 lines
382 B
C
Raw Normal View History

2020-12-26 00:18:11 +01:00
#ifndef LIST_PAGE_H
#define LIST_PAGE_H
#include <vector>
#include <string>
#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();
std::vector<std::string> list_entries;
std::string folder;
2020-12-26 00:18:11 +01:00
};
#endif