qswiki/page.h

19 lines
252 B
C
Raw Normal View History

2018-11-03 17:12:20 +01:00
#ifndef PAGE_H
#define PAGE_H
#include <string>
class Page
{
public:
Page();
std::string name;
std::string title;
std::string parentpage;
2018-11-03 17:12:20 +01:00
bool listed;
2024-03-16 22:03:22 +01:00
bool feedlisted;
2018-11-03 17:12:20 +01:00
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