aboutsummaryrefslogtreecommitdiff
path: root/account.h
diff options
context:
space:
mode:
authorXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-06-12 23:47:17 +0200
committerXavier Del Campo Romero <xavi.dcr@tutanota.com>2023-06-29 14:09:46 +0200
commit05b2584fa4d773f5a88ed3ce98f5dd8304e11c34 (patch)
treef72e73c3259b8100e886f49f67ecc669b7667502 /account.h
parent3b8fafc4122848219898245d52dabd669cacb4ba (diff)
First commit
Diffstat (limited to 'account.h')
-rw-r--r--account.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/account.h b/account.h
new file mode 100644
index 0000000..daa94d4
--- /dev/null
+++ b/account.h
@@ -0,0 +1,18 @@
+#ifndef ACCOUNT_H
+#define ACCOUNT_H
+
+#include "client.h"
+#include "ui_account.h"
+#include <QListWidget>
+#include <QWidget>
+
+class Account : public QWidget
+{
+public:
+ Account(Client *c, QListWidget *list, QWidget *parent = nullptr);
+
+private:
+ Ui_account ui;
+};
+
+#endif