aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/riff/aiff/aiffproperties.h
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/riff/aiff/aiffproperties.h')
-rw-r--r--taglib/riff/aiff/aiffproperties.h42
1 files changed, 21 insertions, 21 deletions
diff --git a/taglib/riff/aiff/aiffproperties.h b/taglib/riff/aiff/aiffproperties.h
index ceefe32e..68e90b79 100644
--- a/taglib/riff/aiff/aiffproperties.h
+++ b/taglib/riff/aiff/aiffproperties.h
@@ -46,35 +46,35 @@ namespace TagLib {
class TAGLIB_EXPORT Properties : public AudioProperties
{
public:
- /*!
- * Create an instance of AIFF::Properties with the data read from the
- * ByteVector \a data.
- */
- Properties(const ByteVector &data, ReadStyle style);
+ /*!
+ * Create an instance of AIFF::Properties with the data read from the
+ * ByteVector \a data.
+ */
+ Properties(const ByteVector &data, ReadStyle style);
- /*!
- * Destroys this AIFF::Properties instance.
- */
- virtual ~Properties();
+ /*!
+ * Destroys this AIFF::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;
};
}
}