~ubuntu-branches/ubuntu/vivid/libusermetrics/vivid

« back to all changes in this revision

Viewing changes to src/libusermetricsoutput/SyncedUserMetricsStore.h

  • Committer: Package Import Robot
  • Author(s): Ubuntu daily release, Pete Woods, Ubuntu daily release
  • Date: 2013-07-18 02:04:24 UTC
  • mfrom: (1.1.12)
  • Revision ID: package-import@ubuntu.com-20130718020424-p4kb6xdnb479bwx2
Tags: 1.0.9+13.10.20130718-0ubuntu1
[ Pete Woods ]
* Now will switch to user data for users that acquire data while
  visible

[ Ubuntu daily release ]
* Automatic snapshot from revision 115

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
}