aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/opus/decoderopusfactory.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-01-06 19:27:03 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2019-01-06 19:27:03 +0000
commit8a6f982632b4f4710576685a5647a771384ab29a (patch)
tree9ca763e18279d42aa4c7b29530612768db1bbf01 /src/plugins/Input/opus/decoderopusfactory.h
parent1b0fef3d25ed94518f4f6b1914a7d7e71aae80c5 (diff)
downloadqmmp-8a6f982632b4f4710576685a5647a771384ab29a.tar.gz
qmmp-8a6f982632b4f4710576685a5647a771384ab29a.tar.bz2
qmmp-8a6f982632b4f4710576685a5647a771384ab29a.zip
using override keyword
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@8591 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/opus/decoderopusfactory.h')
-rw-r--r--src/plugins/Input/opus/decoderopusfactory.h19
1 files changed, 9 insertions, 10 deletions
diff --git a/src/plugins/Input/opus/decoderopusfactory.h b/src/plugins/Input/opus/decoderopusfactory.h
index 39a51bd83..850f03116 100644
--- a/src/plugins/Input/opus/decoderopusfactory.h
+++ b/src/plugins/Input/opus/decoderopusfactory.h
@@ -1,5 +1,5 @@
/***************************************************************************
- * Copyright (C) 2013-2018 by Ilya Kotov *
+ * Copyright (C) 2013-2019 by Ilya Kotov *
* forkotov02@ya.ru *
* *
* This program is free software; you can redistribute it and/or modify *
@@ -33,15 +33,14 @@ Q_PLUGIN_METADATA(IID "org.qmmp.qmmp.DecoderFactoryInterface.1.0")
Q_INTERFACES(DecoderFactory)
public:
- bool canDecode(QIODevice *input) const;
- DecoderProperties properties() const;
- Decoder *create(const QString &path, QIODevice *input);
- MetaDataModel* createMetaDataModel(const QString &path, bool readOnly);
- QList<TrackInfo *> createPlayList(const QString &path, TrackInfo::Parts parts, QStringList *);
- QObject* showDetails(QWidget *parent, const QString &path);
- void showSettings(QWidget *parent);
- void showAbout(QWidget *parent);
- QString translation() const;
+ bool canDecode(QIODevice *input) const override;
+ DecoderProperties properties() const override;
+ Decoder *create(const QString &path, QIODevice *input) override;
+ MetaDataModel* createMetaDataModel(const QString &path, bool readOnly) override;
+ QList<TrackInfo *> createPlayList(const QString &path, TrackInfo::Parts parts, QStringList *) override;
+ void showSettings(QWidget *parent) override;
+ void showAbout(QWidget *parent) override;
+ QString translation() const override;
};
#endif //DECODEROPUSFACTORY_H