Arena  1.0
A content management system
 All Classes Files Functions Variables Pages
FileStreams.py File Reference

This file defines classes for interacting with file streams containing binary data. More...

Classes

class  Library.IO.FileStreams.AFileStream
 The base file stream class, from which all others are derived. More...
 
class  Library.IO.FileStreams.AFileInputStream
 This class represents a stream that is used to read binary data from a file. More...
 
class  Library.IO.FileStreams.AFileOutputStream
 This class represents a stream that is used to write binary information to a file. More...
 

Variables

string Library.IO.FileStreams.fisReadError = "an error occurred while reading from \"{filename}\""
 Represents an error that can occur when reading from a stream.
 
string Library.IO.FileStreams.fisWriteError = "an error occurred while writing to \"{filename}\""
 Represents an error that can occur when writing to a stream.
 

Detailed Description

This file defines classes for interacting with file streams containing binary data.

The stream data is packed and unpacked using routines from the struct library.