aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authortrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-10-06 12:32:31 +0000
committertrialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38>2013-10-06 12:32:31 +0000
commit92140f6eedd28aac56363044dc1f6cacdedb908b (patch)
tree1694aca06ef1d0ec564b37e607c75cdb4c4ed172 /src
parent19a2276bebf313755c37c90eed5dcaaca6140c87 (diff)
downloadqmmp-92140f6eedd28aac56363044dc1f6cacdedb908b.tar.gz
qmmp-92140f6eedd28aac56363044dc1f6cacdedb908b.tar.bz2
qmmp-92140f6eedd28aac56363044dc1f6cacdedb908b.zip
fixed api documentation
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@3750 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src')
-rw-r--r--src/qmmp/decoder.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/qmmp/decoder.h b/src/qmmp/decoder.h
index 1c5557db6..76e8445ac 100644
--- a/src/qmmp/decoder.h
+++ b/src/qmmp/decoder.h
@@ -46,12 +46,13 @@ public:
virtual qint64 totalTime() = 0;
/*!
* Requests a seek to the time \b time indicated, specified in milliseconds.
+ * Subclass should reimplement this function.
*/
virtual void seek(qint64 time) = 0;
/*!
* Reads up to \b maxSize bytes of decoded audio to \b data
* Returns the number of bytes read, or -1 if an error occurred.
- * In most cases subclass should reimplement this function.
+ * Subclass should reimplement this function.
*/
virtual qint64 read(char *data, qint64 maxSize) = 0;
/*!