diff options
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 |