From 7028cbe09c688437910a25623098762bf0fa592d Mon Sep 17 00:00:00 2001 From: David Walter Seikel Date: Mon, 28 Mar 2016 22:28:34 +1000 Subject: Move Irrlicht to src/others. --- .../doc/html/classirr_1_1io_1_1_i_read_file.html | 290 +++++++++++++++++++++ 1 file changed, 290 insertions(+) create mode 100644 src/others/irrlicht-1.8.1/doc/html/classirr_1_1io_1_1_i_read_file.html (limited to 'src/others/irrlicht-1.8.1/doc/html/classirr_1_1io_1_1_i_read_file.html') diff --git a/src/others/irrlicht-1.8.1/doc/html/classirr_1_1io_1_1_i_read_file.html b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1io_1_1_i_read_file.html new file mode 100644 index 0000000..34a67b3 --- /dev/null +++ b/src/others/irrlicht-1.8.1/doc/html/classirr_1_1io_1_1_i_read_file.html @@ -0,0 +1,290 @@ + + + + +Irrlicht 3D Engine: irr::io::IReadFile Class Reference + + + + + + + + + + + + + + +
+ + +
+ + + + + + + + + + + + + + + + + +
+
Irrlicht 3D Engine + +
+ +
+ + + + + + +
+
+
+ + + + +
+
+ +
+
+
+ +
+
+ +
+
irr::io::IReadFile Class Reference
+
+
+ +

Interface providing read acess to a file. + More...

+ +

#include <IReadFile.h>

+
+ + Inheritance diagram for irr::io::IReadFile:
+
+
+ + +

List of all members.

+

+Public Member Functions

+ +

Detailed Description

+

Interface providing read acess to a file.

+ +

Definition at line 17 of file IReadFile.h.

+

Member Function Documentation

+ +
+
+ + + + + + + +
virtual const io::path& irr::io::IReadFile::getFileName () const [pure virtual]
+
+
+ +

Get name of file.

+
Returns:
File name as zero terminated character string.
+ +
+
+ +
+
+ + + + + + + +
virtual long irr::io::IReadFile::getPos () const [pure virtual]
+
+
+ +

Get the current position in the file.

+
Returns:
Current position in the file in bytes.
+ +
+
+ +
+
+ + + + + + + +
virtual long irr::io::IReadFile::getSize () const [pure virtual]
+
+
+ +

Get size of file.

+
Returns:
Size of the file in bytes.
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
virtual s32 irr::io::IReadFile::read (void * buffer,
u32 sizeToRead 
) [pure virtual]
+
+
+ +

Reads an amount of bytes from the file.

+
Parameters:
+ + + +
bufferPointer to buffer where read bytes are written to.
sizeToReadAmount of bytes to read from the file.
+
+
+
Returns:
How many bytes were read.
+ +
+
+ +
+
+ + + + + + + + + + + + + + + + + + +
virtual bool irr::io::IReadFile::seek (long finalPos,
bool relativeMovement = false 
) [pure virtual]
+
+
+ +

Changes position in file.

+
Parameters:
+ + + +
finalPosDestination position in the file.
relativeMovementIf set to true, the position in the file is changed relative to current position. Otherwise the position is changed from beginning of file.
+
+
+
Returns:
True if successful, otherwise false.
+ +
+
+
The documentation for this class was generated from the following file: +
+
+ + + + + -- cgit v1.1