Let's make (git) history!

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

21
session.h 一般檔案
查看文件

@@ -0,0 +1,21 @@
#ifndef SESSION_H
#define SESSION_H
#include <ctime>
#include "user.h"
class Session
{
public:
Session()
{
}
Session(User u);
bool loggedIn;
User user;
std::string token;
std::string csrf_token;
time_t creation_time;
static Session createAnon();
};
#endif