Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/cli/Show.h')
-rw-r--r--src/cli/Show.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/cli/Show.h b/src/cli/Show.h
index 630b18f80..18b6d7049 100644
--- a/src/cli/Show.h
+++ b/src/cli/Show.h
@@ -18,10 +18,15 @@
#ifndef KEEPASSXC_SHOW_H
#define KEEPASSXC_SHOW_H
-class Show
+#include "Command.h"
+
+class Show : public Command
{
public:
- static int execute(int argc, char** argv);
+ Show();
+ ~Show();
+ int execute(const QStringList& arguments);
+ int showEntry(Database* database, QStringList attributes, QString entryPath);
};
#endif // KEEPASSXC_SHOW_H