Go to the documentation of this file.
24 #ifndef __fileStream_hpp__
25 #define __fileStream_hpp__
uniquePtr< std::ofstream > outStream_
out file stream
void openInFile(const fileSystem &path)
open input file
void close()
close streams
fileStream & operator=(const fileStream &)=delete
No assignment.
virtual ~fileStream()
Destructor.
Manages file pathes, manupulate and combines them.
std::ofstream & outStream()
Access output file stream.
uniquePtr< std::ifstream > inStream_
in file stream
Creates and manages an input/output file stream with specified format.
fileStream(const fileSystem &path, bool outStream=false, bool binary=false, bool append=false)
From file path and input type and format.
void openOutFile(const fileSystem &path)
open output file
std::ifstream & inStream()
Access input file stream.