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/Create.h')
-rw-r--r--src/cli/Create.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/cli/Create.h b/src/cli/Create.h
index 85993eaeb..1c5696a6e 100644
--- a/src/cli/Create.h
+++ b/src/cli/Create.h
@@ -21,18 +21,14 @@
#include "Command.h"
#include "keys/FileKey.h"
-#include "keys/PasswordKey.h"
class Create : public Command
{
public:
Create();
- ~Create();
- int execute(const QStringList& arguments);
+ int execute(const QStringList& arguments) override;
private:
- QSharedPointer<PasswordKey> getPasswordFromStdin();
- QSharedPointer<FileKey> getFileKeyFromStdin();
bool loadFileKey(const QString& path, QSharedPointer<FileKey>& fileKey);
};