HDK
|
#include <ArchiveReader.h>
Public Member Functions | |
virtual | ~ArchiveReader () |
virtual const std::string & | getName () const =0 |
virtual const MetaData & | getMetaData () const =0 |
virtual ObjectReaderPtr | getTop ()=0 |
virtual ReadArraySampleCachePtr | getReadArraySampleCachePtr ()=0 |
virtual void | setReadArraySampleCachePtr (ReadArraySampleCachePtr iPtr)=0 |
virtual TimeSamplingPtr | getTimeSampling (uint32_t iIndex)=0 |
Returns the TimeSampling at a given index. More... | |
virtual index_t | getMaxNumSamplesForTimeSamplingIndex (uint32_t iIndex)=0 |
virtual uint32_t | getNumTimeSamplings ()=0 |
virtual int32_t | getArchiveVersion ()=0 |
virtual ArchiveReaderPtr | asArchivePtr ()=0 |
The Archive is "the file". It has a single object, it's top object. It has no properties, but does have metadata.
Definition at line 75 of file ArchiveReader.h.
|
virtual |
Virtual destructor ...
|
pure virtual |
Return self ...
|
pure virtual |
Returns the Alembic library numeric version (see Foundation.h) of this archive file.
|
pure virtual |
Returns the maximum number of samples written for the TimeSampling at the given index. If an illegal iIndex is specified, or a max number of samplings couldn't be found for that iIndex (for older archives pre 1.1.3) INDEX_UNKNOWN will be returned.
|
pure virtual |
The meta data of the archive is the same as the meta data of the top-level object reader.
|
pure virtual |
Return the archive (file) name. This is the name of the file which the root reader is associated with.
|
pure virtual |
Returns the total number of TimeSamplingPtrs in the Archive TimeSampling pool.
|
pure virtual |
Get the read array sample cache. It may be a NULL pointer. Caches can be shared amongst separate archives, and caching will is disabled if a NULL cache is returned here.
|
pure virtual |
Returns the TimeSampling at a given index.
|
pure virtual |
Get (or open) a pointer to the top object reader corresponding to this archive.
|
pure virtual |
Set the read array sample cache. It may also be a NULL pointer. Caches can be shared amongst separate archives, and caching will be disabled if a NULL cache is passed here.