Make the toString() method virtual

This commit is contained in:
Lukáš Lalinský
2012-11-12 16:22:23 +01:00
parent e8ae4ecd93
commit 60ba972244
6 changed files with 12 additions and 37 deletions

View File

@ -87,7 +87,10 @@ namespace TagLib {
*/
virtual int channels() const = 0;
String toString() const;
/*!
* Returns description of the audio file.
*/
virtual String toString() const;
protected: