X-Git-Url: https://git.quassel-irc.org/?a=blobdiff_plain;f=src%2Fcore%2Fstorage.h;h=69a229e4089b8106d4400ce07173598044049fae;hb=2e6dc76ae100a6b8e1b1661e422995f90083500e;hp=c049dc17dc76747931fafe537168ffe4dccfceea;hpb=788fd0058595c815dc42597e9956c02aea45261f;p=quassel.git diff --git a/src/core/storage.h b/src/core/storage.h index c049dc17..69a229e4 100644 --- a/src/core/storage.h +++ b/src/core/storage.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2005-07 by the Quassel IRC Team * + * Copyright (C) 2005-08 by the Quassel Project * * devel@quassel-irc.org * * * * This program is free software; you can redistribute it and/or modify * @@ -22,7 +22,6 @@ #define _STORAGE_H_ #include -#include #include "message.h" @@ -30,7 +29,7 @@ class Storage : public QObject { Q_OBJECT public: - Storage() {}; + Storage(QObject *parent = 0); virtual ~Storage() {}; public slots: @@ -52,7 +51,7 @@ class Storage : public QObject { * \param settings Hostname, port, username, password, ... * \return True if and only if the storage provider was initialized successfully. */ - virtual bool setup(const QVariantMap &settings = QVariantMap()) { return false; } + virtual bool setup(const QVariantMap &settings = QVariantMap()) { Q_UNUSED(settings); return false; } //! Initialize the storage provider /** \param settings Hostname, port, username, password, ...