From 0b22f10b1388aae628e281e1ea07290a152f4d97 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Sun, 9 Feb 2020 09:39:49 -0500 Subject: [PATCH] Start a c++ class for hush chat objects --- src/mainwindow.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/mainwindow.h b/src/mainwindow.h index 227e32a..98c640e 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -41,6 +41,18 @@ private: }; +class HushChat +{ + +public: + HushContact contact(); + void setContact(); + QString myZaddr(); +private: + +}; + + class MainWindow : public QMainWindow { Q_OBJECT