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/List.h')
-rw-r--r--src/cli/List.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/cli/List.h b/src/cli/List.h
index 18528bd78..98b8b5a45 100644
--- a/src/cli/List.h
+++ b/src/cli/List.h
@@ -18,10 +18,15 @@
#ifndef KEEPASSXC_LIST_H
#define KEEPASSXC_LIST_H
-class List
+#include "Command.h"
+
+class List : public Command
{
public:
- static int execute(int argc, char** argv);
+ List();
+ ~List();
+ int execute(const QStringList& arguments);
+ int listGroup(Database* database, QString groupPath = QString(""));
};
#endif // KEEPASSXC_LIST_H