Assimp
v4.1. (December 2018)
|
Inherits Assimp::IOStream.
Public Member Functions | |
size_t | FileSize () const override |
Returns filesize Returns the filesize. More... | |
void | Flush () override |
Flush the contents of the file buffer (for writers) See fflush() for more details. More... | |
size_t | Read (void *pvBuffer, size_t pSize, size_t pCount) override |
Read from the file. More... | |
aiReturn | Seek (size_t pOffset, aiOrigin pOrigin) override |
Set the read/write cursor of the file. More... | |
size_t | Tell () const override |
Get the current position of the read/write cursor. More... | |
size_t | Write (const void *, size_t, size_t) override |
Write to the file. More... | |
virtual | ~ZipFile () |
![]() | |
virtual | ~IOStream () |
Destructor. More... | |
Friends | |
class | ZipFileInfo |
Additional Inherited Members | |
![]() | |
IOStream () AI_NO_EXCEPT | |
Constructor protected, use IOSystem::Open() to create an instance. More... | |
|
virtual |
|
overridevirtual |
Returns filesize Returns the filesize.
Implements Assimp::IOStream.
|
inlineoverridevirtual |
Flush the contents of the file buffer (for writers) See fflush() for more details.
Implements Assimp::IOStream.
|
overridevirtual |
Read from the file.
See fread() for more details This fails for write-only files
Implements Assimp::IOStream.
Set the read/write cursor of the file.
Note that the offset is negative for aiOrigin_END. See fseek() for more details
Implements Assimp::IOStream.
|
overridevirtual |
Get the current position of the read/write cursor.
See ftell() for more details
Implements Assimp::IOStream.
|
inlineoverridevirtual |
Write to the file.
See fwrite() for more details This fails for read-only files
Implements Assimp::IOStream.
|
friend |