Use override

This commit is contained in:
Jonas Kvinge
2020-06-26 23:01:57 +02:00
parent f1115ba706
commit b51cc21140
17 changed files with 66 additions and 66 deletions

View File

@@ -34,10 +34,10 @@
class PulseDeviceFinder : public DeviceFinder {
public:
explicit PulseDeviceFinder();
~PulseDeviceFinder();
~PulseDeviceFinder() override;
virtual bool Initialise();
virtual QList<Device> ListDevices();
bool Initialise() override;
QList<Device> ListDevices() override;
private:
struct ListDevicesState {