~ubuntu-branches/ubuntu/vivid/solid/vivid

« back to all changes in this revision

Viewing changes to src/solid/devices/backends/hal/halmanager.h

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-03-17 15:46:36 UTC
  • mfrom: (1.1.8)
  • Revision ID: package-import@ubuntu.com-20150317154636-22j6662gcq5mcqpi
Tags: 5.8.0-0ubuntu1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
43
43
    HalManager(QObject *parent);
44
44
    virtual ~HalManager();
45
45
 
46
 
    virtual QString udiPrefix() const;
47
 
    virtual QSet<Solid::DeviceInterface::Type> supportedInterfaces() const;
 
46
    QString udiPrefix() const Q_DECL_OVERRIDE;
 
47
    QSet<Solid::DeviceInterface::Type> supportedInterfaces() const Q_DECL_OVERRIDE;
48
48
 
49
49
    bool deviceExists(const QString &udi);
50
 
    virtual QStringList allDevices();
 
50
    QStringList allDevices() Q_DECL_OVERRIDE;
51
51
 
52
52
    virtual QStringList devicesFromQuery(const QString &parentUdi,
53
 
                                         Solid::DeviceInterface::Type type);
 
53
                                         Solid::DeviceInterface::Type type) Q_DECL_OVERRIDE;
54
54
 
55
 
    virtual QObject *createDevice(const QString &udi);
 
55
    QObject *createDevice(const QString &udi) Q_DECL_OVERRIDE;
56
56
 
57
57
private Q_SLOTS:
58
58
    void slotDeviceAdded(const QString &udi);