Let's make (git) history!

Bu işleme şunda yer alıyor:
2018-11-03 17:12:20 +01:00
işleme 3bfebfe8a8
212 değiştirilmiş dosya ile 11970 ekleme ve 0 silme

18
revision.h Normal dosya
Dosyayı Görüntüle

@@ -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