mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-29 01:16:20 -05:00
60a67846b0
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@7428 b45a01b8-16f6-495d-af2f-9b41ad6348cc
37 lines
836 B
C++
37 lines
836 B
C++
#ifndef RSGXSUPDATEBROADCAST_H
|
|
#define RSGXSUPDATEBROADCAST_H
|
|
|
|
#include <QObject>
|
|
|
|
#include <retroshare/rsgxsifacetypes.h>
|
|
|
|
class RsGxsIfaceHelper;
|
|
class QTimer;
|
|
|
|
class RsGxsUpdateBroadcast : public QObject
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static void cleanup();
|
|
|
|
static RsGxsUpdateBroadcast *get(RsGxsIfaceHelper* ifaceImpl);
|
|
|
|
signals:
|
|
void changed();
|
|
void msgsChanged(const std::map<RsGxsGroupId, std::vector<RsGxsMessageId> >& msgIds, const std::map<RsGxsGroupId, std::vector<RsGxsMessageId> >& msgIdsMeta);
|
|
void grpsChanged(const std::list<RsGxsGroupId>& grpIds, const std::list<RsGxsGroupId>& grpIdsMeta);
|
|
|
|
private slots:
|
|
void poll();
|
|
|
|
private:
|
|
explicit RsGxsUpdateBroadcast(RsGxsIfaceHelper* ifaceImpl);
|
|
|
|
private:
|
|
RsGxsIfaceHelper* mIfaceImpl;
|
|
QTimer *mTimer;
|
|
};
|
|
|
|
#endif // RSGXSUPDATEBROADCAST_H
|