56 return static_cast<bool>( std::getline( std::cin, p_line ) );
58 inFile_ =
new std::ifstream(
fn_, std::ios::in );
60 inErrExit( memory,
"can not create ifstream '" +
fn_ +
"'" );
63 inErrExit( cmdline,
"can not open file name '" +
fn_ +
"'" );
64 return static_cast<bool>( std::getline( *
inFile_, p_line ) );
Counter base class.
Definition: counter.h:23
Abstraction of input channel.
Definition: linesource.h:29
bool fromcin_
Do we read from standard in?
Definition: linesource.h:32
std::string fn_
File name.
Definition: linesource.h:30
LineSource & operator=(const LineSource &)=delete
Delete copy assignement.
LineSource & operator=(LineSource &&)=delete
Delete move assignement.
bool getLine(std::string &p_line)
Wrapper around getline() to hide input stream.
Definition: linesource.h:54
LineSource(const std::string &p_fn)
Ctor.
Definition: linesource.h:36
std::ifstream * inFile_
Open, if we read from a file.
Definition: linesource.h:31
LineSource(const LineSource &)=delete
Delete the copy ctor.
LineSource(LineSource &&)=delete
Delete the move ctor.
~LineSource()
Dtor.
Definition: linesource.h:51
void inErrExit(InError p_err, const std::string &p_details, const std::source_location p_location)
Interpreter error message to interpreter cout_ and exit(1).
Definition: error.cpp:48
Definitions and functions for error handling.