aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/riff/wav/wavproperties.h
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/riff/wav/wavproperties.h')
-rw-r--r--taglib/riff/wav/wavproperties.h52
1 files changed, 26 insertions, 26 deletions
diff --git a/taglib/riff/wav/wavproperties.h b/taglib/riff/wav/wavproperties.h
index e75ec0fb..2023f539 100644
--- a/taglib/riff/wav/wavproperties.h
+++ b/taglib/riff/wav/wavproperties.h
@@ -49,41 +49,41 @@ namespace TagLib {
class TAGLIB_EXPORT Properties : public AudioProperties
{
public:
- /*!
- * Create an instance of WAV::Properties with the data read from the
- * ByteVector \a data.
- */
- Properties(const ByteVector &data, ReadStyle style);
+ /*!
+ * Create an instance of WAV::Properties with the data read from the
+ * ByteVector \a data.
+ */
+ Properties(const ByteVector &data, ReadStyle style);
- /*!
- * Create an instance of WAV::Properties with the data read from the
- * ByteVector \a data and the length calculated using \a streamLength.
- */
- Properties(const ByteVector &data, uint streamLength, ReadStyle style);
+ /*!
+ * Create an instance of WAV::Properties with the data read from the
+ * ByteVector \a data and the length calculated using \a streamLength.
+ */
+ Properties(const ByteVector &data, uint streamLength, ReadStyle style);
- /*!
- * Destroys this WAV::Properties instance.
- */
- virtual ~Properties();
+ /*!
+ * Destroys this WAV::Properties instance.
+ */
+ virtual ~Properties();
- // Reimplementations.
+ // Reimplementations.
- virtual int length() const;
- virtual int bitrate() const;
- virtual int sampleRate() const;
- virtual int channels() const;
+ virtual int length() const;
+ virtual int bitrate() const;
+ virtual int sampleRate() const;
+ virtual int channels() const;
- int sampleWidth() const;
- uint sampleFrames() const;
+ int sampleWidth() const;
+ uint sampleFrames() const;
private:
- Properties(const Properties &);
- Properties &operator=(const Properties &);
+ Properties(const Properties &);
+ Properties &operator=(const Properties &);
- void read(const ByteVector &data);
+ void read(const ByteVector &data);
- class PropertiesPrivate;
- PropertiesPrivate *d;
+ class PropertiesPrivate;
+ PropertiesPrivate *d;
};
}
}