diff options
author | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-31 09:47:21 +0700 |
---|---|---|
committer | Anatasof Wirapraja <anatasof.wirapraja@gmail.com> | 2019-08-31 09:47:21 +0700 |
commit | 525b3eaf3a55ea4acf1d41189a573a54901b4426 (patch) | |
tree | bccfa78937b0cd1bbc93bedcb3c168ce95dba471 /controller.hxx | |
parent | 4fb624054cfe1813b4e56423c27056cd80c7c120 (diff) | |
parent | 19ebf9e75257adc89a3d43076f8404c87b1d0c60 (diff) |
Merge branch 'development' of ssh://darapsa.co.id/usr/local/git/kelakon into development
* 'development' of ssh://darapsa.co.id/usr/local/git/kelakon:
Renamed the rtclient project to librtclient
Managed to post login credentials to the RT server
Made user name editable
User password member
Affirming the previous commit
Revert "Made the user class members more straightforward"
Made the user class members more straightforward
Diffstat (limited to 'controller.hxx')
-rw-r--r-- | controller.hxx | 4 |
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; |