Urdl C++ Library

PrevUpHomeNext
istream::open

Opens the specified URL.

void open(
    const url & u);

Parameters

u

The URL to open.

Remarks

Calls rdbuf()->open(u). If that function does not return a null pointer, calls clear(). Otherwise calls setstate(failbit) (which may throw ios_base::failure).


PrevUpHomeNext