chrono::ChStreamOutBinaryFile Class Reference

Description

Specialized class for BINARY output on system's file.

#include <ChStream.h>

Inheritance diagram for chrono::ChStreamOutBinaryFile:
Collaboration diagram for chrono::ChStreamOutBinaryFile:

Public Member Functions

 ChStreamOutBinaryFile (const std::string &filename, std::ios::openmode mode=std::ios::trunc)
 
- Public Member Functions inherited from chrono::ChStreamFile
 ChStreamFile (const std::string &filename, std::ios::openmode mode)
 Creates and open a file, given the filename on disk and the opening mode. More...
 
virtual ~ChStreamFile ()
 Destruction means that the file stream is also closed.
 
virtual void Flush ()
 Synchronizes the associated stream buffer with its controlled output sequence.
 
virtual void Write (const char *data, size_t n)
 Writes to file, up to n chars. More...
 
virtual void Read (char *data, size_t n)
 Reads from file, up to n chars. More...
 
virtual bool End_of_stream () const
 Returns true if end of stream reached.
 
std::fstream & GetFstream ()
 Reference to fstream encapsulated here.
 
- Public Member Functions inherited from chrono::ChStreamOutBinary
template<class T >
ChStreamOutBinaryoperator< (T &obj)
 Generic << operator for all classes which implement serialization by means of a method named 'void StreamOut(ChStreamOutBinary&)' OBSOLETE use ChArchive << operator and ArchiveOut()
 
ChStreamOutBinaryoperator<< (char Val)
 Specialized operators for basic primitives (numbers like long, double, int. More...
 
ChStreamOutBinaryoperator<< (bool Val)
 
ChStreamOutBinaryoperator<< (int Val)
 
ChStreamOutBinaryoperator<< (unsigned int Val)
 
ChStreamOutBinaryoperator<< (double Val)
 
ChStreamOutBinaryoperator<< (float Val)
 
ChStreamOutBinaryoperator<< (const std::string &str)
 
ChStreamOutBinaryoperator<< (long Val)
 
ChStreamOutBinaryoperator<< (unsigned long Val)
 
ChStreamOutBinaryoperator<< (unsigned long long Val)
 
ChStreamOutBinaryoperator<< (const char *str)
 Specialized operator for C strings.
 
ChStreamOutBinaryoperator<< (char *str)
 
template<class T >
void GenericBinaryOutput (T &ogg)
 Generic operator for binary streaming of generic objects. More...
 
template<class t >
t * AbstractWrite (t *pObj)
 Stores an object, given the pointer, into the archive. More...
 
template<class t >
t * AbstractWriteAll (t *pObj)
 Stores an object, given the pointer, into the archive. More...
 
void VersionWrite (int mver)
 Some objects may write class version at the beginning of the streamed data, using this function.
 
- Public Member Functions inherited from chrono::ChBinaryArchive
bool IsBigEndianMachine ()
 Returns true if the machine where the code runs has big endian byte ordering, returns false otherwise.
 
void Init ()
 Reinitialize the vector of pointers to loaded/saved objects.
 
int PutPointer (void *object)
 Put a pointer in pointer vector, but only if it was not previously inserted. More...
 

Additional Inherited Members

- Public Types inherited from chrono::ChStream
enum  eChMode { CHFILE_NORMAL = 0, CHFILE_NOWRITE, CHFILE_SAFEWRITE, CHFILE_OPENLATER }
 [Obsolete] Modes for chrono files (the ch-modes). More...
 
enum  eChStreamError { CHSTREAM_OK = 0, CHSTREAM_EOF, CHSTREAM_FAIL }
 Errors for chrono files (the ch-modes). More...
 
- Protected Attributes inherited from chrono::ChBinaryArchive
bool big_endian_machine
 
std::vector< void * > objects_pointers
 Vector of pointers to stored/retrieved objects.
 

The documentation for this class was generated from the following files:
  • /builds/uwsbel/chrono/src/chrono/core/ChStream.h
  • /builds/uwsbel/chrono/src/chrono/core/ChStream.cpp