38 "File " << path <<
" does not exist for opening. \n";
43 inStream_ = makeUnique<std::ifstream>(
44 path.
wordPath(), std::ios_base::in | std::ios_base::binary);
46 inStream_ = makeUnique<std::ifstream>(
49 if( !inStream_->is_open())
53 "File " << path <<
" cannot be opened. \n";
76 outStream_ = makeUnique< std::ofstream>(
77 path.
wordPath(), std::ios_base::out| std::ios::binary);
80 outStream_ = makeUnique< std::ofstream>(
81 path.
wordPath(), std::ios_base::out);
84 if(!outStream_->is_open())
87 "File " << path <<
" cannot be opened. \n";