aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/PlayListFormats/pls/plsplaylistformat.h
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-12-22 10:46:29 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2012-12-22 10:46:29 +0000
commit954146ff9b69591f0cf3895e96922bb55ad88502 (patch)
treeb495690d6ed2a6b5251fd1e8a428b550354a0cba /src/plugins/PlayListFormats/pls/plsplaylistformat.h
parent2b286b3f3713a224839b9444579046556b608c58 (diff)
downloadqmmp-954146ff9b69591f0cf3895e96922bb55ad88502.tar.gz
qmmp-954146ff9b69591f0cf3895e96922bb55ad88502.tar.bz2
qmmp-954146ff9b69591f0cf3895e96922bb55ad88502.zip
playlist format api cleanup
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3088 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/PlayListFormats/pls/plsplaylistformat.h')
-rw-r--r--src/plugins/PlayListFormats/pls/plsplaylistformat.h12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/plugins/PlayListFormats/pls/plsplaylistformat.h b/src/plugins/PlayListFormats/pls/plsplaylistformat.h
index 4d770ee74..42fbb48f6 100644
--- a/src/plugins/PlayListFormats/pls/plsplaylistformat.h
+++ b/src/plugins/PlayListFormats/pls/plsplaylistformat.h
@@ -35,14 +35,10 @@ class PLSPlaylistFormat : public QObject, public PlayListFormat
Q_OBJECT
Q_INTERFACES(PlayListFormat)
public:
- PLSPlaylistFormat();
- virtual QStringList getExtensions()const;
- virtual bool hasFormat(const QString&);
- virtual QStringList decode(const QString& contents);
- virtual QString encode(const QList<PlayListItem*>& contents);
- virtual QString name()const;
-protected:
- QStringList m_supported_formats;
+ const PlayListFormatProperties properties() const;
+ QStringList decode(const QString& contents);
+ QString encode(const QList<PlayListItem*>& contents);
+
};
#endif