aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/flac/flacfile.h
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/flac/flacfile.h')
-rw-r--r--taglib/flac/flacfile.h13
1 files changed, 13 insertions, 0 deletions
diff --git a/taglib/flac/flacfile.h b/taglib/flac/flacfile.h
index 64e67bc0..e9251fed 100644
--- a/taglib/flac/flacfile.h
+++ b/taglib/flac/flacfile.h
@@ -91,6 +91,19 @@ namespace TagLib {
Properties::ReadStyle propertiesStyle = Properties::Average);
/*!
+ * Contructs a FLAC file from \a file. If \a readProperties is true the
+ * file's audio properties will also be read using \a propertiesStyle. If
+ * false, \a propertiesStyle is ignored.
+ *
+ * If this file contains and ID3v2 tag the frames will be created using
+ * \a frameFactory.
+ */
+ // BIC: merge with the above constructor
+ File(IOStream *stream, ID3v2::FrameFactory *frameFactory,
+ bool readProperties = true,
+ Properties::ReadStyle propertiesStyle = Properties::Average);
+
+ /*!
* Destroys this instance of the File.
*/
virtual ~File();