summaryrefslogtreecommitdiff
path: root/controller.hxx
diff options
context:
space:
mode:
authorErik Prabowo Kamal <erik@darapsa.co.id>2019-08-30 18:53:52 +0800
committerErik Prabowo Kamal <erik@darapsa.co.id>2019-08-30 18:53:52 +0800
commit07c432faf992781868f4d24b417c9cabb52a33d5 (patch)
treeb1b8c262509ce932e1169d9aa59c516de1bb31a5 /controller.hxx
parent2235e4736994ae902e6cff167c5550168c0a37bb (diff)
Managed to post login credentials to the RT server
For now, it's just to get a response
Diffstat (limited to 'controller.hxx')
-rw-r--r--controller.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/controller.hxx b/controller.hxx
index e293ec4..8b98328 100644
--- a/controller.hxx
+++ b/controller.hxx
@@ -10,6 +10,10 @@ class Controller : public QObject
public:
Controller();
~Controller();
+ Q_INVOKABLE void logIn(QString const& name, QString const& password);
+
+ signals:
+ void credentialsObtained(QString const& name, QString const& password);
private:
QThread thread;