summaryrefslogtreecommitdiff
path: root/noncore/settings/sshkeys/sshkeys.h
Unidiff
Diffstat (limited to 'noncore/settings/sshkeys/sshkeys.h') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/settings/sshkeys/sshkeys.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/noncore/settings/sshkeys/sshkeys.h b/noncore/settings/sshkeys/sshkeys.h
new file mode 100644
index 0000000..4a9f2fe
--- a/dev/null
+++ b/noncore/settings/sshkeys/sshkeys.h
@@ -0,0 +1,27 @@
1
2#ifndef SSHKEYSAPP_H
3#define SSHKEYSAPP_H
4
5#include "sshkeysbase.h"
6
7class OProcess;
8
9class SSHKeysApp : public SSHKeysBase
10{
11 Q_OBJECT
12
13 public:
14 SSHKeysApp( QWidget* parent = 0, const char* name = 0, WFlags fl = 0 );
15 ~SSHKeysApp();
16
17 private:
18 void sshadd(char **args);
19
20 private slots:
21 void doAddButton();
22 void doRefreshListButton();
23 void doRemoveAllButton();
24 void get_list_keys_output(OProcess *proc, char *buffer, int buflen);
25};
26#endif
27