Properties::ReadStyle propertiesStyle = Properties::Average);
/*!
- * Constructs an APE file from \a file. If \a readProperties is true the
+ * Constructs an FLAC file from \a file. If \a readProperties is true the
* file's audio properties will also be read.
*
* If this file contains and ID3v2 tag the frames will be created using
/*!
* Constructs a byte vector that copies \a data up to the first null
- * byte. The behavior is undefined if \a data is not null terminated.
- * This is particularly useful for constructing byte arrays from string
- * constants.
+ * byte. This is particularly useful for constructing byte arrays from
+ * string constants.
+ *
+ * \warning The behavior is undefined if \a data is not null terminated.
*/
ByteVector(const char *data);
ByteVector &operator=(const ByteVector &v);
/*!
- * Copies ByteVector \a v.
+ * Copies a byte \a c.
*/
ByteVector &operator=(char c);
/*!
- * Copies ByteVector \a v.
+ * Copies \a data up to the first null byte.
+ *
+ * \warning The behavior is undefined if \a data is not null terminated.
*/
ByteVector &operator=(const char *data);