diff options
Diffstat (limited to 'connectionprivate.h')
-rw-r--r-- | connectionprivate.h | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/connectionprivate.h b/connectionprivate.h deleted file mode 100644 index 424ef998..00000000 --- a/connectionprivate.h +++ /dev/null @@ -1,66 +0,0 @@ -/****************************************************************************** - * Copyright (C) 2015 Felix Rohrbach <kde@fxrh.de> - * - * This library is free software; you can redistribute it and/or - * modify it under the terms of the GNU Lesser General Public - * License as published by the Free Software Foundation; either - * version 2.1 of the License, or (at your option) any later version. - * - * This library is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - * Lesser General Public License for more details. - * - * You should have received a copy of the GNU Lesser General Public - * License along with this library; if not, write to the Free Software - * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - */ - -#ifndef QMATRIXCLIENT_CONNECTIONPRIVATE_H -#define QMATRIXCLIENT_CONNECTIONPRIVATE_H - -#include <QtCore/QObject> -#include <QtCore/QHash> -#include <QtCore/QJsonObject> - -#include "connection.h" -#include "connectiondata.h" - -namespace QMatrixClient -{ - class Connection; - class Event; - class State; - class User; - class BaseJob; - class SyncRoomData; - - class ConnectionPrivate : public QObject - { - Q_OBJECT - public: - ConnectionPrivate(Connection* parent); - ~ConnectionPrivate(); - - void resolveServer( QString domain ); - - void processState( State* state ); - - /** Finds a room with this id or creates a new one and adds it to roomMap. */ - Room* provideRoom( QString id ); - - Connection* q; - ConnectionData* data; - QHash<QString, Room*> roomMap; - QHash<QString, User*> userMap; - bool isConnected; - QString username; - QString password; - QString userId; - - public slots: - void gotRoomMembers(BaseJob* job); - }; -} - -#endif // QMATRIXCLIENT_CONNECTIONPRIVATE_H |