2018-11-03 17:12:20 +01:00
|
|
|
#ifndef PAGE_H
|
|
|
|
#define PAGE_H
|
|
|
|
#include <string>
|
|
|
|
|
|
|
|
class Page
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Page();
|
|
|
|
std::string name;
|
2022-03-27 09:23:35 +02:00
|
|
|
std::string title;
|
2018-11-03 17:12:20 +01:00
|
|
|
bool listed;
|
|
|
|
unsigned int current_revision;
|
2018-11-04 19:31:58 +01:00
|
|
|
unsigned int pageid;
|
2018-11-03 17:12:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // PAGE_H
|