forked from IJHack/QtPass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrealpass.h
37 lines (32 loc) · 1.18 KB
/
realpass.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#ifndef REALPASS_H
#define REALPASS_H
#include "pass.h"
/*!
\class RealPass
\brief Wrapper for executing pass to handle the password-store
*/
class RealPass : public Pass {
void executePass(PROCESS id, const QStringList &arg,
QString input = QString(), bool readStdout = true,
bool readStderr = true);
public:
RealPass();
virtual ~RealPass() {}
virtual void GitInit() Q_DECL_OVERRIDE;
virtual void GitPull() Q_DECL_OVERRIDE;
virtual void GitPull_b() Q_DECL_OVERRIDE;
virtual void GitPush() Q_DECL_OVERRIDE;
virtual void Show(QString file) Q_DECL_OVERRIDE;
virtual void OtpGenerate(QString file) Q_DECL_OVERRIDE;
virtual void Insert(QString file, QString value,
bool overwrite = false) Q_DECL_OVERRIDE;
virtual void Remove(QString file, bool isDir = false) Q_DECL_OVERRIDE;
virtual void Init(QString path, const QList<UserInfo> &users) Q_DECL_OVERRIDE;
// Pass interface
public:
void Move(const QString src, const QString dest,
const bool force = false) Q_DECL_OVERRIDE;
void Copy(const QString src, const QString dest,
const bool force = false) Q_DECL_OVERRIDE;
};
#endif // REALPASS_H