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

« back to all changes in this revision

Viewing changes to src/solid/devices/backends/fstab/fstabmanager.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:
42
42
    explicit FstabManager(QObject *parent);
43
43
    virtual ~FstabManager();
44
44
 
45
 
    virtual QString udiPrefix() const;
46
 
    virtual QSet<Solid::DeviceInterface::Type> supportedInterfaces() const;
47
 
    virtual QStringList allDevices();
48
 
    virtual QStringList devicesFromQuery(const QString &parentUdi, Solid::DeviceInterface::Type type);
49
 
    virtual QObject *createDevice(const QString &udi);
 
45
    QString udiPrefix() const Q_DECL_OVERRIDE;
 
46
    QSet<Solid::DeviceInterface::Type> supportedInterfaces() const Q_DECL_OVERRIDE;
 
47
    QStringList allDevices() Q_DECL_OVERRIDE;
 
48
    QStringList devicesFromQuery(const QString &parentUdi, Solid::DeviceInterface::Type type) Q_DECL_OVERRIDE;
 
49
    QObject *createDevice(const QString &udi) Q_DECL_OVERRIDE;
50
50
 
51
51
Q_SIGNALS:
52
52
    void mtabChanged(const QString &device);