| FLAC
    1.3.1
    | 
#include <metadata.h>
 
  
 | Public Member Functions | |
| virtual | ~Prototype () | 
| bool | is_valid () const | 
| bool | get_is_last () const | 
| ::FLAC__MetadataType | get_type () const | 
| unsigned | get_length () const | 
| void | set_is_last (bool) | 
| operator const ::FLAC__StreamMetadata * () const | |
| bool | operator== (const Prototype &) const | 
| bool | operator== (const ::FLAC__StreamMetadata &) const | 
| bool | operator== (const ::FLAC__StreamMetadata *) const | 
| bool | operator!= (const Prototype &) const | 
| bool | operator!= (const ::FLAC__StreamMetadata &) const | 
| bool | operator!= (const ::FLAC__StreamMetadata *) const | 
| Protected Member Functions | |
| Prototype (const Prototype &) | |
| Prototype (const ::FLAC__StreamMetadata &) | |
| Prototype (const ::FLAC__StreamMetadata *) | |
| Prototype (::FLAC__StreamMetadata *object, bool copy) | |
| Prototype & | assign_object (::FLAC__StreamMetadata *object, bool copy) | 
| virtual void | clear () | 
| Prototype & | operator= (const Prototype &) | 
| Prototype & | operator= (const ::FLAC__StreamMetadata &) | 
| Prototype & | operator= (const ::FLAC__StreamMetadata *) | 
| Protected Attributes | |
| ::FLAC__StreamMetadata * | object_ | 
| Friends | |
| class | SimpleIterator | 
| class | Iterator | 
Base class for all metadata block types. See the overview for more.
| 
 | protected | 
Constructs an object with copy control. When copy is true, behaves identically to FLAC::Metadata::Prototype::Prototype(const ::FLAC__StreamMetadata *object). When copy is false, the instance takes ownership of the pointer and the FLAC__StreamMetadata object will be freed by the destructor.
| 
 | virtual | 
Deletes the underlying FLAC__StreamMetadata object.
Assign from another object. Always performs a deep copy.
Referenced by FLAC::Metadata::StreamInfo::operator=(), FLAC::Metadata::Padding::operator=(), FLAC::Metadata::Application::operator=(), FLAC::Metadata::SeekTable::operator=(), FLAC::Metadata::VorbisComment::operator=(), FLAC::Metadata::CueSheet::operator=(), FLAC::Metadata::Picture::operator=(), and FLAC::Metadata::Unknown::operator=().
| 
 | protected | 
Assign from another object. Always performs a deep copy.
| 
 | protected | 
Assign from another object. Always performs a deep copy.
| 
 | protected | 
Assigns an object with copy control. See Prototype(::FLAC__StreamMetadata *object, bool copy).
Referenced by FLAC::Metadata::StreamInfo::assign(), FLAC::Metadata::Padding::assign(), FLAC::Metadata::Application::assign(), FLAC::Metadata::SeekTable::assign(), FLAC::Metadata::VorbisComment::assign(), FLAC::Metadata::CueSheet::assign(), FLAC::Metadata::Picture::assign(), and FLAC::Metadata::Unknown::assign().
| 
 | protectedvirtual | 
Deletes the underlying FLAC__StreamMetadata object.
| bool FLAC::Metadata::Prototype::get_is_last | ( | ) | const | 
Returns true if this block is the last block in a stream, else false.
| ::FLAC__MetadataType FLAC::Metadata::Prototype::get_type | ( | ) | const | 
Returns the type of the block.
| unsigned FLAC::Metadata::Prototype::get_length | ( | ) | const | 
Returns the stream length of the metadata block.
| void FLAC::Metadata::Prototype::set_is_last | ( | bool | ) | 
Sets the "is_last" flag for the block. When using the iterators it is not necessary to set this flag; they will do it for you.