aboutsummaryrefslogtreecommitdiff
path: root/connectionprivate.h
diff options
context:
space:
mode:
authorKitsuneRal <Kitsune-Ral@users.sf.net>2016-09-07 08:34:03 +0900
committerGitHub <noreply@github.com>2016-09-07 08:34:03 +0900
commit34e7ba238f46734893111110235e032d44fd3690 (patch)
tree6fc1008c9d2dc50a7acd21c601ac06aff1365f2e /connectionprivate.h
parentc02174bc8f09761c2e4ee3ca4a250ce49025343e (diff)
parent573e0e478c4a904ba69e6b523dead41eb28121c1 (diff)
downloadlibquotient-34e7ba238f46734893111110235e032d44fd3690.tar.gz
libquotient-34e7ba238f46734893111110235e032d44fd3690.zip
Merge pull request #24 from Fxrh/kitsune-settings
Settings classes
Diffstat (limited to 'connectionprivate.h')
-rw-r--r--connectionprivate.h66
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