blob: a85fc638014768d578881cfeea31e329276ba765 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#ifndef __PRACRO_SESSIONSERIALISER_H__
#define __PRACRO_SESSIONSERIALISER_H__
#include <string>
#include "session.h"
class Environment;
class SessionSerialiser {
public:
SessionSerialiser(Environment *e, std::string path);
Session *loadStr(const std::string &xml);
std::string saveStr(Session *session);
Session *findFromTupple(const std::string &patientid,
const std::string &templ);
Session *load(const std::string &sessionid);
void save(Session *session);
private:
std::string path;
Environment *env;
};
std::string getSessionFilename(const std::string &path,
const std::string &sessionid);
#endif
|