[#BloombergLP-balxml-Base64Parser] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/balxml.adoc[balxml]::Base64Parser :relfileprefix: ../../ :mrdocs: This is a push parser for supported Base64 types (`bsl::vector<char>` or `bsl::string`). == Synopsis Declared in `<balxml_base64parser.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TYPE> class Base64Parser; ---- == Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/balxml/Base64Parser/2constructor.adoc[`Base64Parser`] [.small]#[constructor]# | Create a parser for parsing Base64 types. | xref:BloombergLP/balxml/Base64Parser/beginParse.adoc[`beginParse`] | Prepare the parser to start parsing a new value and associate the specified `object` with the parser. Return 0 if successful and non‐zero otherwise. | xref:BloombergLP/balxml/Base64Parser/endParse.adoc[`endParse`] | Ends the parse operation and store the value parsed from the pushed characters into the associated object. Return 0 if successful and non‐zero otherwise. The behavior is undefined unless an object is associated with this parser. Upon successful completion, the parser will be disassociated with the object. | xref:BloombergLP/balxml/Base64Parser/pushCharacters.adoc[`pushCharacters`] | Push the characters ranging from the specified `begin` up to (but not including) the specified `end` into this parser. Return 0 if successful and non‐zero otherwise. The parameterized `INPUT_ITERATOR` must be dereferenceable to a `char` value. The behavior is undefined unless an object is associated with this parser. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#