diff options
Diffstat (limited to 'src/core/GpgContext.h')
-rw-r--r-- | src/core/GpgContext.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/GpgContext.h b/src/core/GpgContext.h index 2ff87e6b..a199e62d 100644 --- a/src/core/GpgContext.h +++ b/src/core/GpgContext.h @@ -47,13 +47,18 @@ struct GpgContextInitArgs { // make no sense for gpg2 bool independent_database = false; ///< std::string db_path = {}; + bool gpg_alone = false; std::string gpg_path = {}; + bool test_mode = false; bool ascii = true; bool offline_mode = false; bool auto_import_missing_key = false; + bool custom_gpgconf = false; + std::string custom_gpgconf_path; + GpgContextInitArgs() = default; }; |