~indicator-applet-developers/libusermetrics/trunk

« back to all changes in this revision

Viewing changes to src/libusermetricsoutput/SyncedUserMetricsStore.h

  • Committer: Pete Woods
  • Date: 2013-07-17 10:23:53 UTC
  • mfrom: (112.2.4 trunk)
  • Revision ID: pete.woods@canonical.com-20130717102353-vobc7w040qa0l164
New release

Show diffs side-by-side

added added

removed removed

Lines of Context:
29
29
 
30
30
public:
31
31
        explicit SyncedUserMetricsStore(const QDBusConnection &dbusConnection,
32
 
                        QObject *parent = 0);
 
32
                        const QString &localeDir = LOCALEDIR, QObject *parent = 0);
33
33
 
34
34
        virtual ~SyncedUserMetricsStore();
35
35
 
 
36
Q_SIGNALS:
 
37
        void connectionEstablished();
 
38
 
36
39
public Q_SLOTS:
37
40
        void addUserData(const QString &username, const QDBusObjectPath &path);
38
41
 
42
45
 
43
46
        void removeDataSource(const QString &username, const QDBusObjectPath &path);
44
47
 
 
48
        void sync();
 
49
 
45
50
protected:
46
51
        com::canonical::UserMetrics m_interface;
 
52
 
 
53
        QString m_localeDir;
47
54
};
48
55
 
49
56
}