Construct empty input character sequence.
| 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 | : |
nothing calls this directly
no test coverage detected