mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2025-05-10 21:52:08 +02:00
24 lines
327 B
C++
24 lines
327 B
C++
#ifndef LIST_PAGE_H
|
|
#define LIST_PAGE_H
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
|
|
#include "core/object.h"
|
|
|
|
#include "core/request.h"
|
|
|
|
|
|
class ListPage : public Object {
|
|
RCPP_OBJECT(ListPage, Object);
|
|
|
|
public:
|
|
void index(Request *request);
|
|
|
|
ListPage();
|
|
~ListPage();
|
|
|
|
std::vector<std::string> messages;
|
|
};
|
|
|
|
#endif |