summaryrefslogtreecommitdiff
path: root/include/configreader.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/configreader.h')
-rw-r--r--include/configreader.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/configreader.h b/include/configreader.h
index 6786604b5..0fbf234c3 100644
--- a/include/configreader.h
+++ b/include/configreader.h
@@ -614,3 +614,14 @@ class CoreExport ConfigReaderThread : public Thread
void Finish();
bool IsDone() { return done; }
};
+
+class CoreExport ConfigStatus
+{
+ public:
+ User* const srcuser;
+
+ ConfigStatus(User* user = NULL)
+ : srcuser(user)
+ {
+ }
+};