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

« back to all changes in this revision

Viewing changes to src/solid/devices/backends/fakehw/fakeprocessor.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:
40
40
    ~FakeProcessor();
41
41
 
42
42
public Q_SLOTS:
43
 
    virtual int number() const;
44
 
    virtual int maxSpeed() const;
45
 
    virtual bool canChangeFrequency() const;
46
 
    virtual Solid::Processor::InstructionSets instructionSets() const;
 
43
    int number() const Q_DECL_OVERRIDE;
 
44
    int maxSpeed() const Q_DECL_OVERRIDE;
 
45
    bool canChangeFrequency() const Q_DECL_OVERRIDE;
 
46
    Solid::Processor::InstructionSets instructionSets() const Q_DECL_OVERRIDE;
47
47
};
48
48
}
49
49
}