qswiki/page.h

15 rader
167 B
C
Normal vy Historik

2018-11-03 17:12:20 +01:00
#ifndef PAGE_H
#define PAGE_H
#include <string>
class Page
{
public:
Page();
std::string name;
bool listed;
unsigned int current_revision;
};
#endif // PAGE_H