summaryrefslogtreecommitdiff
path: root/server/src/journal.h
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/journal.h')
-rw-r--r--server/src/journal.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/server/src/journal.h b/server/src/journal.h
index 3fbbbd6..fe1a4bd 100644
--- a/server/src/journal.h
+++ b/server/src/journal.h
@@ -52,6 +52,9 @@ public:
std::string getEntry(std::string macro);
void removeEntry(std::string macro);
+ void setDirty(std::string macro);
+ bool dirty(std::string macro);
+
void setUser(std::string user);
std::string user();
@@ -63,6 +66,7 @@ protected:
public:
std::string resume;
std::string macro;
+ bool dirty;
};
std::string _user;