MCPcopy Create free account
hub / github.com/Genivia/ugrep / Input

Method Input

include/reflex/input.h:337–346  ·  view source on GitHub ↗

Construct empty input character sequence.

Source from the content-addressed store, hash-verified

335 class dos_streambuf;
336 /// Construct empty input character sequence.
337 Input()
338 :
339 cstring_(NULL),
340 wstring_(NULL),
341 file_(NULL),
342 istream_(NULL),
343 size_(0)
344 {
345 init();
346 }
347 /// Copy constructor (with intended "move semantics" as internal state is shared, should not rely on using the rhs after copying).
348 Input(const Input& input) ///< an Input object to share state with (undefined behavior results from using both objects)
349 :

Callers

nothing calls this directly

Calls 3

initFunction · 0.85
file_encodingClass · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected