From 287a2bbac0173c5738aeb4ce7bdb97befe9bc2f7 Mon Sep 17 00:00:00 2001 From: Mirek Kratochvil Date: Thu, 18 Apr 2013 10:45:05 +0200 Subject: [PATCH] main: variables for params --- src/main.cpp | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 78e9a48..701999b 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -53,15 +53,24 @@ void test() */ #include - #include "keyring.h" int main (int argc, char**argv) { - bool do_help = false; - bool do_version = false; - bool do_test = false; - bool has_opt = false; + bool do_help = false, + do_version = false, + do_test = false, + has_opt = false, + opt_armor = false, + opt_fingerprint = false, + opt_clearsign = false, + opt_import_no_action = false; + + std::string recipient, user, + input, output, + name, + action, action_param, + detach_sign; //process options int c, option_index; @@ -91,12 +100,13 @@ int main (int argc, char**argv) {"export-secret", 2, 0, 0 }, {"delete-secret", 1, 0, 0 }, - {"gen-key", 1, 0, 0 } + {"gen-key", 1, 0, 0 }, {"rename", 2, 0, 0 }, {"name", 2, 0, 0 }, {"fingerprint", 0, 0, 0 }, + {"no-action", 0, 0, 'n' }, //actions {"sign", 0, 0, 's' },