Make CTCP PING report the correct millisecond round-trip time
[quassel.git] / src / core / coreusersettings.h
index bf303cf..54d4527 100644 (file)
@@ -1,5 +1,5 @@
 /***************************************************************************
- *   Copyright (C) 2005-08 by the Quassel IRC Team                         *
+ *   Copyright (C) 2005-2014 by the Quassel Project                        *
  *   devel@quassel-irc.org                                                 *
  *                                                                         *
  *   This program is free software; you can redistribute it and/or modify  *
@@ -15,7 +15,7 @@
  *   You should have received a copy of the GNU General Public License     *
  *   along with this program; if not, write to the                         *
  *   Free Software Foundation, Inc.,                                       *
- *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
+ *   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
  ***************************************************************************/
 
 #ifndef _COREUSERSETTINGS_H_
@@ -28,9 +28,9 @@
 
 #include <QVariantMap>
 
-class CoreUserSettings : public CoreSettings {
-
-  public:
+class CoreUserSettings : public CoreSettings
+{
+public:
     CoreUserSettings(UserId user);
 
     Identity identity(IdentityId id);
@@ -38,15 +38,10 @@ class CoreUserSettings : public CoreSettings {
     void storeIdentity(const Identity &identity);
     void removeIdentity(IdentityId id);
 
-    NetworkInfo networkInfo(NetworkId id);
-    QList<NetworkId> networkIds();
-    void storeNetworkInfo(const NetworkInfo &info);
-    void removeNetworkInfo(NetworkId id);
-
     void setSessionState(const QVariant &data);
     QVariant sessionState(const QVariant &def = QVariant());
 
-  private:
+private:
     // this stuff should only be accessed by CoreSession!
     QVariantMap sessionData();
     QVariant sessionValue(const QString &key, const QVariant &def = QVariant());
@@ -57,4 +52,5 @@ class CoreUserSettings : public CoreSettings {
     friend class CoreSession;
 };
 
+
 #endif