Parse the visited value into the specified object.

Synopses

Declared in <balxml_decoder.h>

Parse the visited value into the specified object.

int
executeImp(
    bsl::vector<char>* object,
    int formattingMode,
    bdlat_TypeCategory::Array category);

Parse the visited value into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::Array category);

Parse the visited value into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::Choice category);

Parse the visited value into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::CustomizedType category);

Parse the visited value into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::DynamicType category);

Parse the visited value into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::NullableValue category);

Parse the visited value into the specified object.

template<class TYPE>
int
executeImp(
    TYPE* object,
    int formattingMode,
    bdlat_TypeCategory::Sequence category);

Parse the visited value into the specified object.

template<class TYPE>
int
executeImp(
    bsl::vector<TYPE>* object,
    int formattingMode,
    bdlat_TypeCategory::Array category);

Parse the visited value into the specified object.

template<
    class TYPE,
    class ANY_CATEGORY>
int
executeImp(
    TYPE* object,
    int formattingMode,
    ANY_CATEGORY category);

Return Value

0 on success, and a non‐zero value otherwise

Parameters

Name

Description

object

object being decoded

formattingMode

formatting mode for the element

category

bdlat type‐category tag selecting this overload

Created with MrDocs