Let's make (git) history!

此提交包含在:
2018-11-03 17:12:20 +01:00
當前提交 3bfebfe8a8
共有 212 個檔案被更改,包括 11970 行新增0 行删除

14
page.h 一般檔案
查看文件

@@ -0,0 +1,14 @@
#ifndef PAGE_H
#define PAGE_H
#include <string>
class Page
{
public:
Page();
std::string name;
bool listed;
unsigned int current_revision;
};
#endif // PAGE_H