~canonical-platform-qa/ubuntu-system-settings-online-accounts/launch_fixture

« back to all changes in this revision

Viewing changes to src/service.h

  • Committer: CI bot
  • Author(s): Alberto Mardegan
  • Date: 2014-05-30 13:30:01 UTC
  • mfrom: (107.1.13 master)
  • Revision ID: ps-jenkins@lists.canonical.com-20140530133001-an9lfy1dc1pfkifd
Release development branch

Features landing with this branch:
- Updating the ACL when applications are enabled/disabled in System Settings
- Write profile information in the XML files installed by click hooks
- Run tests with Python 3 autopilot.
- Merge signon-ui into online-accounts-ui 

Show diffs side-by-side

added added

removed removed

Lines of Context:
32
32
class Service: public QObject, protected QDBusContext
33
33
{
34
34
    Q_OBJECT
35
 
    Q_PROPERTY(bool isIdle READ isIdle NOTIFY isIdleChanged)
36
35
 
37
36
public:
38
37
    explicit Service(QObject *parent = 0);
39
38
    ~Service();
40
39
 
41
 
    bool isIdle() const;
42
 
 
43
40
public Q_SLOTS:
44
41
    QVariantMap requestAccess(const QVariantMap &options);
45
42
 
46
 
Q_SIGNALS:
47
 
    void isIdleChanged();
48
 
 
49
43
private:
50
44
    ServicePrivate *d_ptr;
51
45
    Q_DECLARE_PRIVATE(Service)