X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsyncableobject.h;h=dfe3887dce2a6a6c1a44c89f6fb374fc93f28521;hp=61915cbb85bd672d550cb556c0a55be01c0da159;hb=0324c701d9cc8c656e6188b4e102e19e05c98201;hpb=f2e4609f070221a010eef8be98524c5ce88d228b diff --git a/src/common/syncableobject.h b/src/common/syncableobject.h index 61915cbb..dfe3887d 100644 --- a/src/common/syncableobject.h +++ b/src/common/syncableobject.h @@ -18,8 +18,8 @@ * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef _SYNCABLEOBJECT_H_ -#define _SYNCABLEOBJECT_H_ +#ifndef SYNCABLEOBJECT_H +#define SYNCABLEOBJECT_H #include #include @@ -31,6 +31,7 @@ class SyncableObject : public QObject { public: SyncableObject(QObject *parent = 0); + SyncableObject(const QString &objectName, QObject *parent = 0); SyncableObject(const SyncableObject &other, QObject *parent = 0); //! Stores the object's state into a QVariantMap. @@ -45,7 +46,7 @@ public: * \return The object's state in a QVariantMap */ virtual QVariantMap toVariantMap(); - + //! Initialize the object's state from a given QVariantMap. /** \see toVariantMap() for important information concerning this method. */ @@ -61,10 +62,11 @@ public: public slots: virtual void setInitialized(); void requestUpdate(const QVariantMap &properties); - void update(const QVariantMap &properties); + virtual void update(const QVariantMap &properties); protected: void renameObject(const QString &newName); + SyncableObject &operator=(const SyncableObject &other); signals: void initDone(); @@ -75,7 +77,7 @@ signals: private: bool setInitValue(const QString &property, const QVariant &value); - + bool _initialized; bool _allowClientUpdates;