summaryrefslogtreecommitdiff
path: root/src/options.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-05-08 20:27:17 +0300
committerAndrei Karas <akaras@inbox.ru>2017-05-08 20:27:17 +0300
commita0ea4c0ba04425c08c5e9fe15ed70745891f3f8a (patch)
treea668cdc502f965df4cc6eb9e1bb94db1f4f7c964 /src/options.h
parent652f2cca31626806dc536b4ee3d18aa1d654f569 (diff)
downloadplus-a0ea4c0ba04425c08c5e9fe15ed70745891f3f8a.tar.gz
plus-a0ea4c0ba04425c08c5e9fe15ed70745891f3f8a.tar.bz2
plus-a0ea4c0ba04425c08c5e9fe15ed70745891f3f8a.tar.xz
plus-a0ea4c0ba04425c08c5e9fe15ed70745891f3f8a.zip
Add command line parameter --enable-ipc for enable ipc at start.
Diffstat (limited to 'src/options.h')
-rw-r--r--src/options.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/options.h b/src/options.h
index bd6663de7..d0ee5c34b 100644
--- a/src/options.h
+++ b/src/options.h
@@ -63,7 +63,8 @@ struct Options final
chooseDefault(false),
noOpenGL(false),
safeMode(false),
- testMode(false)
+ testMode(false),
+ ipc(false)
{}
A_DELETE_COPY(Options)
@@ -92,6 +93,7 @@ struct Options final
bool noOpenGL;
bool safeMode;
bool testMode;
+ bool ipc;
};
#endif // OPTIONS_H