diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-07-10 21:02:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-07-11 00:06:30 +0300 |
commit | 845f010511c88acd81da36d0e38b8ef12119d3e6 (patch) | |
tree | c21fa9be4372cdec8aa3f86fc90b1d6e939d824a /src/options.h | |
parent | 4a8621b8f1e3c714136e662157295edaf47c0983 (diff) | |
download | mv-845f010511c88acd81da36d0e38b8ef12119d3e6.tar.gz mv-845f010511c88acd81da36d0e38b8ef12119d3e6.tar.bz2 mv-845f010511c88acd81da36d0e38b8ef12119d3e6.tar.xz mv-845f010511c88acd81da36d0e38b8ef12119d3e6.zip |
Add command like parameter --validate for validating client data.
Diffstat (limited to 'src/options.h')
-rw-r--r-- | src/options.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/options.h b/src/options.h index 0411c9efb..ae7e57d24 100644 --- a/src/options.h +++ b/src/options.h @@ -66,7 +66,8 @@ struct Options final testMode(false), ipc(false), defaultCursor(false), - error(false) + error(false), + validate(false) {} A_DELETE_COPY(Options) @@ -98,6 +99,7 @@ struct Options final bool ipc; bool defaultCursor; bool error; + bool validate; }; #endif // OPTIONS_H |