aboutsummaryrefslogtreecommitdiffstats
path: root/taglib/ape/apefile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'taglib/ape/apefile.cpp')
-rw-r--r--taglib/ape/apefile.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/taglib/ape/apefile.cpp b/taglib/ape/apefile.cpp
index 5d914756..2973a476 100644
--- a/taglib/ape/apefile.cpp
+++ b/taglib/ape/apefile.cpp
@@ -92,6 +92,13 @@ APE::File::File(FileName file, bool readProperties,
read(readProperties, propertiesStyle);
}
+APE::File::File(IOStream *stream, bool readProperties,
+ Properties::ReadStyle propertiesStyle) : TagLib::File(stream)
+{
+ d = new FilePrivate;
+ read(readProperties, propertiesStyle);
+}
+
APE::File::~File()
{
delete d;