BloombergLP::balxml::Decoder::open

open overloads

Synopses

Declared in <balxml_decoder.h>

Open the associated Reader object (see Reader::open) to read XML data from the file with the specified filename. Return 0 on success and non-zero otherwise.

int
open(char const* filename);
» more...

Open the associated Reader object (see Reader::open) to read XML data from the specified stream. The (optionally) specified uri is used for identifying the input document in error messages. Return 0 on success and non-zero otherwise.

int
open(
    std::istream& stream,
    char const* uri = 0);
» more...

Open the associated Reader object (see Reader::open) to read XML data from the specified stream buffer. The (optionally) specified uri is used for identifying the input document in error messages. Return 0 on success and non-zero otherwise.

int
open(
    std::streambuf* buffer,
    char const* uri = 0);
» more...

Open the associated Reader object (see Reader::open) to read XML data from memory at the specified buffer, with the specified length. The (optionally) specified uri is used for identifying the input document in error messages. Return 0 on success and non-zero otherwise.

int
open(
    char const* buffer,
    std::size_t length,
    char const* uri = 0);
» more...