Constructors
Declared in <bdlde_base64encoder.h>
Create a Base64 encoder in the initial state, with the 'isPadded' option set, a 'maxLineLength' of 76, and the specified 'alphabet'.
explicit
Base64Encoder(Alphabet alphabet);
» more...
Create a Base64 encoder in the initial state, defaulting the state of the maximum allowable line-length, the padding, and the alphabet according to the values of the specified options.
explicit
Base64Encoder(EncoderOptions const& options = EncoderOptions::mime());
» more...
Create a Base64 encoder in the initial state, with the 'isPadded' option set and the two specified options.
explicit
Base64Encoder(
int maxLineLength,
Alphabet alphabet = e_BASIC);
» more...