Go to the documentation of this file.
38 "File " << path <<
" does not exist for opening. \n";
42 inStream_ = makeUnique<std::ifstream>( path.
wordPath(), std::ios_base::in);
44 if( !inStream_->is_open())
48 "File " << path <<
" cannot be opened. \n";
69 outStream_ = makeUnique< std::ofstream>(path.
wordPath(), std::ios_base::out);
71 if(!outStream_->is_open())
74 "File " << path <<
" cannot be opened. \n";
uniquePtr< std::ofstream > outStream_
void openInFile(const fileSystem &path)
fileStream(const fileSystem &path, bool outStream=false)
std::ofstream & outStream()
#define fatalErrorInFunction
fileSystem dirPath() const
uniquePtr< std::ifstream > inStream_
fileSystem createDirs() const
void openOutFile(const fileSystem &path)
std::ifstream & inStream()