diff options
author | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-30 18:53:52 +0800 |
---|---|---|
committer | Erik Prabowo Kamal <erik@darapsa.co.id> | 2019-08-30 18:53:52 +0800 |
commit | 07c432faf992781868f4d24b417c9cabb52a33d5 (patch) | |
tree | b1b8c262509ce932e1169d9aa59c516de1bb31a5 /worker.hxx | |
parent | 2235e4736994ae902e6cff167c5550168c0a37bb (diff) |
Managed to post login credentials to the RT server
For now, it's just to get a response
Diffstat (limited to 'worker.hxx')
-rw-r--r-- | worker.hxx | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -6,9 +6,13 @@ class Worker : public QObject { Q_OBJECT + public: explicit Worker(QObject* parent = nullptr); virtual ~Worker(); + + public slots: + void logIn(QString const& name, QString const& password); }; #endif // WORKER_HXX |