summaryrefslogtreecommitdiff
path: root/server/src/journal_commit.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/journal_commit.h')
-rw-r--r--server/src/journal_commit.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/server/src/journal_commit.h b/server/src/journal_commit.h
index 2d6e092..82919ed 100644
--- a/server/src/journal_commit.h
+++ b/server/src/journal_commit.h
@@ -32,8 +32,6 @@
#include "transaction.h"
-class ResumeEntry;
-
class JournalWriter {
public:
JournalWriter(std::string host, unsigned short int port);
@@ -50,6 +48,12 @@ private:
std::string currentuser;
std::string currentcpr;
+ class ResumeEntry {
+ public:
+ std::string resume;
+ std::string macro;
+ };
+
std::map< int, ResumeEntry > entrylist;
};