~dandrader/unity8/miral

« back to all changes in this revision

Viewing changes to plugins/Ubuntu/SystemImage/SystemImage.h

  • Committer: CI Train Bot
  • Author(s): Lukáš Tinkl
  • Date: 2015-07-17 15:53:14 UTC
  • mfrom: (1799.2.4 asyncDbusCalls)
  • Revision ID: ci-train-bot@canonical.com-20150717155314-o1i9eesjp8v9vfet
Avoid sync DBUS calls
Approved by: Michael Zanetti

Show diffs side-by-side

added added

removed removed

Lines of Context:
19
19
 
20
20
#include <QObject>
21
21
 
22
 
class QDBusInterface;
23
 
 
24
22
class SystemImage : public QObject
25
23
{
26
24
    Q_OBJECT
28
26
 
29
27
public:
30
28
    explicit SystemImage(QObject *parent = 0);
 
29
    ~SystemImage() = default;
31
30
 
32
31
    Q_INVOKABLE void factoryReset();
33
 
 
34
 
private:
35
 
    QDBusInterface *m_interface;
36
32
};
37
33
 
38
34
#endif // SYSTEMIMAGE_H