mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
27 lines
382 B
C++
27 lines
382 B
C++
#ifndef LIST_PAGE_H
|
|
#define LIST_PAGE_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "core/object.h"
|
|
|
|
#include "core/http/request.h"
|
|
|
|
|
|
class ListPage : public Object {
|
|
RCPP_OBJECT(ListPage, Object);
|
|
|
|
public:
|
|
void index(Request *request);
|
|
|
|
void load();
|
|
|
|
ListPage();
|
|
~ListPage();
|
|
|
|
std::vector<std::string> list_entries;
|
|
std::string folder;
|
|
};
|
|
|
|
#endif |