Interface providing write access to a file. More...
#include <IWriteFile.h>
 Inheritance diagram for irr::io::IWriteFile:
 Inheritance diagram for irr::io::IWriteFile:Interface providing write access to a file.
Definition at line 17 of file IWriteFile.h.
| virtual const path& irr::io::IWriteFile::getFileName | ( | ) | const  [pure virtual] | 
Get name of file.
| virtual long irr::io::IWriteFile::getPos | ( | ) | const  [pure virtual] | 
Get the current position in the file.
| virtual bool irr::io::IWriteFile::seek | ( | long | finalPos, | 
| bool | relativeMovement = false | ||
| ) |  [pure virtual] | 
Changes position in file.
| finalPos | Destination position in the file. | 
| relativeMovement | If set to true, the position in the file is changed relative to current position. Otherwise the position is changed from begin of file. | 
Writes an amount of bytes to the file.
| buffer | Pointer to buffer of bytes to write. | 
| sizeToWrite | Amount of bytes to write to the file. |