Let's make (git) history!

This commit is contained in:
2018-11-03 17:12:20 +01:00
commit 3bfebfe8a8
212 changed files with 11970 additions and 0 deletions

18
revision.h Normal file
View File

@@ -0,0 +1,18 @@
#ifndef REVISION_H
#define REVISION_H
#include <string>
#include <ctime>
class Revision
{
public:
unsigned int revision;
time_t timestamp;
std::string comment;
std::string page;
std::string author;
std::string content;
Revision();
};
#endif // REVISION_H