Kryptostack
|
Abstraction of input channel. More...
#include <linesource.h>
Public Member Functions | |
LineSource (const std::string &p_fn) | |
Ctor. | |
LineSource (const LineSource &)=delete | |
Delete the copy ctor. | |
LineSource (LineSource &&)=delete | |
Delete the move ctor. | |
LineSource & | operator= (const LineSource &)=delete |
Delete copy assignement. | |
LineSource & | operator= (LineSource &&)=delete |
Delete move assignement. | |
~LineSource () | |
Dtor. | |
bool | getLine (std::string &p_line) |
Wrapper around getline() to hide input stream. | |
![]() | |
Counter (Counter< LineSource > &&)=delete | |
Counter< LineSource > & | operator= (const Counter< LineSource > &)=delete |
Counter< LineSource > & | operator= (Counter< LineSource > &&)=delete |
Private Attributes | |
std::string | fn_ |
File name. | |
std::ifstream * | inFile_ {} |
Open, if we read from a file. | |
bool | fromcin_ |
Do we read from standard in? | |
Additional Inherited Members | |
![]() | |
static int | getTotalCounter () |
Static getter for totaly created objects. | |
static int | getAliveCounter () |
Static getter for objects alive. | |
static int | getWatermarkCounter () |
Static getter for the object counter watermark. | |
![]() | |
Counter () | |
Ctor. | |
Counter (const Counter< LineSource > &) | |
Copy ctor. | |
~Counter () | |
Dtor. | |
Abstraction of input channel.