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