diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-06-12 12:49:11 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2017-06-12 12:49:11 +0000 |
| commit | b45f600a4ecf9b3f6121a30794e9fcbbb2fee621 (patch) | |
| tree | d746e7f60565bcf19f9489bedc9c850c8559242c /src/qmmpui/playlistformat.h | |
| parent | 7a1dd2cf2c2b4b6c8bbdf3c3282feeef1be1cac1 (diff) | |
| download | qmmp-b45f600a4ecf9b3f6121a30794e9fcbbb2fee621.tar.gz qmmp-b45f600a4ecf9b3f6121a30794e9fcbbb2fee621.tar.bz2 qmmp-b45f600a4ecf9b3f6121a30794e9fcbbb2fee621.zip | |
improved m3u support (#910)
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@7227 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/playlistformat.h')
| -rw-r--r-- | src/qmmpui/playlistformat.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/qmmpui/playlistformat.h b/src/qmmpui/playlistformat.h index ba7ca26f2..06927cfbf 100644 --- a/src/qmmpui/playlistformat.h +++ b/src/qmmpui/playlistformat.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006-2013 by Ilya Kotov * + * Copyright (C) 2006-2017 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -56,9 +56,10 @@ public: virtual QStringList decode(const QString& contents) = 0; /*! * Takes the list of AbstractPlaylistItem objects, should return string of - * encoded playlist file + * encoded playlist file. + * @param dir Playlist file path (May be used to adjust playlist content). */ - virtual QString encode(const QList<PlayListTrack*>& contents) = 0; + virtual QString encode(const QList<PlayListTrack*>& contents, const QString &path) = 0; }; Q_DECLARE_INTERFACE(PlayListFormat,"PlayListFormat/1.0") |
