executeImp overloads
Synopses
Declared in <balxml_decoder.h>
Parse the visited element into the specified object, which is a bsl::vector<char>. Return 0 on success, and a non‐zero value otherwise.
int
executeImp(
bsl::vector<char>* object,
int formattingMode,
bdlat_TypeCategory::Array);
Parse the visited element into the specified object, which is an array type. Return 0 on success, and a non‐zero value otherwise.
template<class TYPE>
int
executeImp(
TYPE* object,
int formattingMode,
bdlat_TypeCategory::Array);
Parse the visited element into the specified object, which is a choice type. Return 0 on success, and a non‐zero value otherwise.
template<class TYPE>
int
executeImp(
TYPE* object,
int formattingMode,
bdlat_TypeCategory::Choice);
Parse a customized type into the specified object.
template<class TYPE>
int
executeImp(
TYPE* object,
int formattingMode,
bdlat_TypeCategory::CustomizedType);
Parse a dynamic type into the specified object.
template<class TYPE>
int
executeImp(
TYPE* object,
int formattingMode,
bdlat_TypeCategory::DynamicType);
Parse a nullable value into the specified object.
template<class TYPE>
int
executeImp(
TYPE* object,
int formattingMode,
bdlat_TypeCategory::NullableValue);
Parse the visited element into the specified object, which is a sequence type. Return 0 on success, and a non‐zero value otherwise.
template<class TYPE>
int
executeImp(
TYPE* object,
int formattingMode,
bdlat_TypeCategory::Sequence);
Parse the visited element into the specified object, which is a bsl::vector of the (template parameter) type TYPE. Return 0 on success, and a non‐zero value otherwise.
template<class TYPE>
int
executeImp(
bsl::vector<TYPE>* object,
int formattingMode,
bdlat_TypeCategory::Array);
Parse the visited value into the specified object using the specified category.
template<
class TYPE,
class ANY_CATEGORY>
int
executeImp(
TYPE* object,
int formattingMode,
ANY_CATEGORY);
Created with MrDocs