Poco::Dynamic

template < typename T >

class VarHolderImpl

Library: Foundation
Package: Dynamic
Header: Poco/Dynamic/VarHolder.h

Description

Template based implementation of a VarHolder. This class provides type storage for user-defined types that do not have VarHolderImpl specialization.

The actual conversion work happens in the template specializations of this class.

VarHolderImpl throws following exceptions: BadCastException (if the requested conversion is not implemented) RangeException (if an attempt is made to assign a numeric value outside of the target min/max limits SyntaxException (if an attempt is made to convert a string containing non-numeric characters to number)

In order to support efficient direct extraction of the held value, all specializations must additionally implement a public member function:

const T& value() const

returning a const reference to the actual stored value.

Inheritance

Direct Base Classes: VarHolder

All Base Classes: VarHolder

Member Summary

Member Functions: clone, convert, isArray, isBoolean, isInteger, isNumeric, isSigned, isString, isStruct, type, value

Inherited Functions: clone, cloneHolder, convert, convertSignedFloatToUnsigned, convertSignedToUnsigned, convertToFP, convertToSigned, convertToSmaller, convertToUnsigned, convertUnsignedToSigned, isArray, isBoolean, isDate, isDateTime, isDeque, isInteger, isList, isNumeric, isOrdered, isSigned, isString, isStruct, isTime, isUUID, isVector, size, type

Constructors

VarHolderImpl inline

VarHolderImpl(
    const T & val
);

Destructor

~VarHolderImpl virtual inline

~VarHolderImpl();

Member Functions

clone virtual inline

VarHolder * clone(
    Placeholder < VarHolder > * pVarHolder = 0
) const;

convert virtual inline

void convert(
    Int8 & val
) const;

convert virtual inline

void convert(
    Int16 & val
) const;

convert virtual inline

void convert(
    Int32 & val
) const;

convert virtual inline

void convert(
    Int64 & val
) const;

convert virtual inline

void convert(
    UInt8 & val
) const;

convert virtual inline

void convert(
    UInt16 & val
) const;

convert virtual inline

void convert(
    UInt32 & val
) const;

convert virtual inline

void convert(
    UInt64 & val
) const;

convert virtual inline

void convert(
    long long & val
) const;

convert virtual inline

void convert(
    unsigned long long & val
) const;

convert virtual inline

void convert(
    bool & val
) const;

convert virtual inline

void convert(
    float & val
) const;

convert virtual inline

void convert(
    double & val
) const;

convert virtual inline

void convert(
    char & val
) const;

convert virtual inline

void convert(
    std::string & val
) const;

convert virtual inline

void convert(
    Poco::UTF16String & val
) const;

isArray virtual inline

bool isArray() const;

isBoolean virtual inline

bool isBoolean() const;

isInteger virtual inline

bool isInteger() const;

isNumeric virtual inline

bool isNumeric() const;

isSigned virtual inline

bool isSigned() const;

isString virtual inline

bool isString() const;

isStruct virtual inline

bool isStruct() const;

type virtual inline

const std::type_info & type() const;

value inline

const T & value() const;