![]() |
GM6000 Digital Heater Controller Branch: main
SDX-1330
|
This abstract class defines the basic additional functionality, beyond that of a stream, for a file. More...
This abstract class defines the basic additional functionality, beyond that of a stream, for a file.
#include <ObjectApi.h>
Public Member Functions | |
virtual bool | isEof ()=0 |
After a read/write operation this method returns true if the file pointer is at EOF. | |
virtual bool | length (unsigned long &length)=0 |
Returns the length, in bytes, of the file. | |
virtual bool | currentPos (unsigned long ¤tPos)=0 |
Returns the current file pointer offset, in bytes, from the top of the file. | |
virtual bool | setRelativePos (long deltaOffset)=0 |
Adjusts the current pointer offset by the specified delta (in bytes). | |
virtual bool | setAbsolutePos (unsigned long newoffset)=0 |
Sets the file pointer to the absolute specified offset (in bytes). | |
virtual bool | setToEof ()=0 |
Sets the file pointer to End-Of-File. | |
virtual | ~ObjectApi () |
Virtual destructor. | |
|
inlinevirtual |
Virtual destructor.
|
pure virtual |
Returns the current file pointer offset, in bytes, from the top of the file.
If there is an error than false is returned.
Implemented in Cpl::Io::File::Input, Cpl::Io::File::Null, Cpl::Io::File::InputOutput, and Cpl::Io::File::Output.
|
pure virtual |
After a read/write operation this method returns true if the file pointer is at EOF.
NOTES:
Implemented in Cpl::Io::File::Input, Cpl::Io::File::InputOutput, Cpl::Io::File::Null, and Cpl::Io::File::Output.
|
pure virtual |
Returns the length, in bytes, of the file.
If there is an error than false is returned.
Implemented in Cpl::Io::File::Input, Cpl::Io::File::InputOutput, Cpl::Io::File::Null, and Cpl::Io::File::Output.
|
pure virtual |
Sets the file pointer to the absolute specified offset (in bytes).
Returns true if successful, else false (i.e. setting the pointer past the end of the file).
Implemented in Cpl::Io::File::Input, Cpl::Io::File::InputOutput, Cpl::Io::File::Null, and Cpl::Io::File::Output.
|
pure virtual |
Adjusts the current pointer offset by the specified delta (in bytes).
Returns true if successful, else false (i.e. setting the pointer past/before the file boundaries).
Implemented in Cpl::Io::File::Input, Cpl::Io::File::InputOutput, Cpl::Io::File::Null, and Cpl::Io::File::Output.
|
pure virtual |
Sets the file pointer to End-Of-File.
Returns true if successful, else false if an error occurred.
Implemented in Cpl::Io::File::Input, Cpl::Io::File::InputOutput, Cpl::Io::File::Null, and Cpl::Io::File::Output.