SaveLoad.h | |
FileOutputStream | A FILE * based OutputStream |
Functions | |
FileOutputStream | |
FileInputStream | A FILE * based InputStream |
Functions | |
FileInputStream | |
Save/ | |
Functions | |
SaveFile | Saves “data” into a file using a StandardSerializer. |
LoadFile | Saves “data” into a file using a StandardDeserializer. |
A FILE * based OutputStream
class FileOutputStream : public OutputStream
This class defines the interface most Serializers use to write data.
class ReflectExport( reflect ) OutputStream
FileOutputStream( std:: FILE * file ) : mFile(file)
A FILE * based InputStream
class FileInputStream : public InputStream
This class defines the interface most Deserializers use to read data.
class ReflectExport( reflect ) InputStream
FileInputStream( std:: FILE * file ) : mFile(file)
Saves “data” into a file using a StandardSerializer.
template<typename Type> bool SaveFile( const Type & data, string:: ConstString filename )
Saves “data” into a file using a StandardDeserializer.
template<typename Type> bool LoadFile( Type & data, string:: ConstString filename )