summaryrefslogtreecommitdiff
path: root/include/FLAC++/metadata.h
diff options
context:
space:
mode:
authorJosh Coalson <jcoalson@users.sourceforce.net>2007-08-14 00:34:50 +0000
committerJosh Coalson <jcoalson@users.sourceforce.net>2007-08-14 00:34:50 +0000
commit09ccf20ae68e566e56b2c342aec2e859ed9437ae (patch)
treef2ab4c4903c6328d561073d332e33f49951e5290 /include/FLAC++/metadata.h
parenta956a821c7e2d4bb89eca783e7beb428063b8f66 (diff)
downloadflac-09ccf20ae68e566e56b2c342aec2e859ed9437ae.tar.gz
add FLAC__metadata_simple_iterator_get_block_offset(), FLAC__metadata_simple_iterator_get_block_length(), FLAC__metadata_simple_iterator_is_last()
Diffstat (limited to 'include/FLAC++/metadata.h')
-rw-r--r--include/FLAC++/metadata.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/FLAC++/metadata.h b/include/FLAC++/metadata.h
index e2ba5c5d..abe2defa 100644
--- a/include/FLAC++/metadata.h
+++ b/include/FLAC++/metadata.h
@@ -1018,8 +1018,11 @@ namespace FLAC {
bool next(); ///< See FLAC__metadata_simple_iterator_next().
bool prev(); ///< See FLAC__metadata_simple_iterator_prev().
+ bool is_last() const; ///< See FLAC__metadata_simple_iterator_is_last().
+ off_t get_block_offset() const; ///< See FLAC__metadata_simple_iterator_get_block_offset().
::FLAC__MetadataType get_block_type() const; ///< See FLAC__metadata_simple_iterator_get_block_type().
+ unsigned get_block_length() const; ///< See FLAC__metadata_simple_iterator_get_block_length().
Prototype *get_block(); ///< See FLAC__metadata_simple_iterator_get_block().
bool set_block(Prototype *block, bool use_padding = true); ///< See FLAC__metadata_simple_iterator_set_block().
bool insert_block_after(Prototype *block, bool use_padding = true); ///< See FLAC__metadata_simple_iterator_insert_block_after().