summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--include/FLAC++/metadata.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/FLAC++/metadata.h b/include/FLAC++/metadata.h
index 9c959a01..0718e327 100644
--- a/include/FLAC++/metadata.h
+++ b/include/FLAC++/metadata.h
@@ -226,6 +226,15 @@ namespace FLAC {
inline void set_reference(bool x) { is_reference_ = x; }
};
+ // local utility routines
+
+ namespace local {
+
+ /** Construct a new object of the type provided in object->type and return it. */
+ Prototype *construct_block(::FLAC__StreamMetadata *object);
+
+ }
+
#ifdef _MSC_VER
// warning C4800: 'int' : forcing to bool 'true' or 'false' (performance warning)
#pragma warning ( disable : 4800 )