Constructors

Synopses

Declared in <balxml_encoderoptions.h>

Create an object of type EncoderOptions having the value of the specified original object. After performing this action, the original object will be left in a valid, but unspecified state.

EncoderOptions(EncoderOptions&& original) noexcept;

Create an object of type EncoderOptions having the default value. Use the optionally specified basicAllocator to supply memory. If basicAllocator is 0, the currently installed default allocator is used.

explicit
EncoderOptions(bslma::Allocator* basicAllocator = 0);

Create an object of type EncoderOptions having the value of the specified original object. Use the optionally specified basicAllocator to supply memory. If basicAllocator is 0, the currently installed default allocator is used.

EncoderOptions(
    EncoderOptions const& original,
    bslma::Allocator* basicAllocator = 0);

Create an object of type EncoderOptions having the value of the specified original object. After performing this action, the original object will be left in a valid, but unspecified state. Use the optionally specified basicAllocator to supply memory. If basicAllocator is 0, the currently installed default allocator is used.

EncoderOptions(
    EncoderOptions&& original,
    bslma::Allocator* basicAllocator);

Created with MrDocs