X-Git-Url: https://git.quassel-irc.org/?p=quassel.git;a=blobdiff_plain;f=src%2Fcommon%2Fsignalproxy.h;h=8c51724bbddd2cb13fbc5ee25d4fb3fb18308c3c;hp=6204573d332c742e260b48d58b1a86d0bcadb598;hb=21d8d7f0a79eeeb541664aa80ce481fdbfc41f09;hpb=fe1fec5e5f0799e03f6a3473dc56511bc00f26eb diff --git a/src/common/signalproxy.h b/src/common/signalproxy.h index 6204573d..8c51724b 100644 --- a/src/common/signalproxy.h +++ b/src/common/signalproxy.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 * @@ -64,8 +64,6 @@ public: bool attachSlot(const QByteArray& sigName, QObject *recv, const char *slot); void synchronize(QObject *obj); - void synchronizeAsMaster(QObject *obj); - void synchronizeAsSlave(QObject *obj); void setInitialized(QObject *obj); bool initialized(QObject *obj); @@ -92,15 +90,17 @@ public: static QString methodBaseName(const QMetaMethod &method); const QList &argTypes(QObject *obj, int methodId); + bool hasUpdateSignal(QObject *obj); const QByteArray &methodName(QObject *obj, int methodId); - const QHash &syncMap(QObject *obj); + const QHash &syncMap(QObject *obj); typedef QHash > ArgHash; typedef QHash MethodNameHash; struct ClassInfo { ArgHash argTypes; MethodNameHash methodNames; - QHash syncMap; + QHash syncMap; + bool hasUpdateSignal; }; void dumpProxyStats();