2007-04-18 18:22:57 +02:00
|
|
|
//
|
|
|
|
// DynamicAny.h
|
|
|
|
//
|
2007-08-10 15:57:07 +02:00
|
|
|
// $Id: //poco/Main/Foundation/include/Poco/DynamicAny.h#10 $
|
2007-04-18 18:22:57 +02:00
|
|
|
//
|
2007-04-26 08:24:35 +02:00
|
|
|
// Library: Foundation
|
2007-04-18 18:22:57 +02:00
|
|
|
// Package: Core
|
|
|
|
// Module: DynamicAny
|
|
|
|
//
|
|
|
|
// Definition of the DynamicAny class.
|
|
|
|
//
|
|
|
|
// Copyright (c) 2007, Applied Informatics Software Engineering GmbH.
|
|
|
|
// and Contributors.
|
|
|
|
//
|
|
|
|
// Permission is hereby granted, free of charge, to any person or organization
|
|
|
|
// obtaining a copy of the software and accompanying documentation covered by
|
|
|
|
// this license (the "Software") to use, reproduce, display, distribute,
|
|
|
|
// execute, and transmit the Software, and to prepare derivative works of the
|
|
|
|
// Software, and to permit third-parties to whom the Software is furnished to
|
|
|
|
// do so, all subject to the following:
|
|
|
|
//
|
|
|
|
// The copyright notices in the Software and this entire statement, including
|
|
|
|
// the above license grant, this restriction and the following disclaimer,
|
|
|
|
// must be included in all copies of the Software, in whole or in part, and
|
|
|
|
// all derivative works of the Software, unless such copies or derivative
|
|
|
|
// works are solely in the form of machine-executable object code generated by
|
|
|
|
// a source language processor.
|
|
|
|
//
|
|
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
// FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
|
|
|
|
// SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
|
|
// FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
|
|
// ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
|
|
// DEALINGS IN THE SOFTWARE.
|
|
|
|
//
|
|
|
|
|
|
|
|
|
2007-04-26 08:24:35 +02:00
|
|
|
#ifndef Foundation_DynamicAny_INCLUDED
|
|
|
|
#define Foundation_DynamicAny_INCLUDED
|
2007-04-18 18:22:57 +02:00
|
|
|
|
|
|
|
|
2007-04-26 08:24:35 +02:00
|
|
|
#include "Poco/Foundation.h"
|
2007-04-18 18:22:57 +02:00
|
|
|
#include "Poco/DynamicAnyHolder.h"
|
|
|
|
#include <typeinfo>
|
|
|
|
|
|
|
|
|
|
|
|
namespace Poco {
|
|
|
|
|
|
|
|
|
|
|
|
class Foundation_API DynamicAny
|
2007-04-25 03:11:49 +02:00
|
|
|
/// DynamicAny allows to store data of different types and to convert between these types transparently.
|
|
|
|
/// DynamicAny puts forth the best effort to provide intuitive and reasonable conversion semantics and prevent
|
|
|
|
/// unexpected data loss, particularly when performing narrowing or signedness conversions of numeric data types.
|
2007-04-18 18:22:57 +02:00
|
|
|
///
|
2007-04-25 03:11:49 +02:00
|
|
|
/// Loss of signedness is not allowed for numeric values. This means that if an attempt is made to convert
|
|
|
|
/// the internal value which is a negative signed integer to an unsigned integer type storage, a RangeException is thrown.
|
|
|
|
/// Overflow is not allowed, so if the internal value is a larger number than the target numeric type size can accomodate,
|
|
|
|
/// a RangeException is thrown.
|
|
|
|
///
|
|
|
|
/// Precision loss, such as in conversion from floating-point types to integers or from double to float on platforms
|
|
|
|
/// where they differ in size (provided internal actual value fits in float min/max range), is allowed.
|
|
|
|
///
|
2007-04-25 10:39:02 +02:00
|
|
|
/// String truncation is allowed -- it is possible to convert between string and character when string length is
|
2007-04-25 03:11:49 +02:00
|
|
|
/// greater than 1. An empty string gets converted to the char '\0', a non-empty string is truncated to the first character.
|
|
|
|
///
|
2007-08-10 15:57:07 +02:00
|
|
|
/// Boolean conversion is performed as follows:
|
2007-04-25 03:11:49 +02:00
|
|
|
///
|
|
|
|
/// A string value "false" (not case sensitive) or "0" can be converted to a boolean value false, any other string
|
|
|
|
/// not being false by the above criteria evaluates to true (e.g: "hi" -> true).
|
|
|
|
/// Integer 0 values are false, everything else is true.
|
|
|
|
/// Floating point values equal to the minimal FP representation on a given platform are false, everything else is true.
|
|
|
|
///
|
2007-09-06 01:38:12 +02:00
|
|
|
/// Arithmetic operations with POD types as well as between DynamicAny's are supported, subject to following
|
|
|
|
/// limitations:
|
|
|
|
///
|
|
|
|
/// - for std::string and const char* values, only '+' and '+=' operations are supported
|
|
|
|
///
|
|
|
|
/// - for integral and floating point numeric values, following operations are supported:
|
2007-09-06 04:48:02 +02:00
|
|
|
/// '+', '+=', '-', '-=', '*', '*=' , '/' and '/='
|
2007-09-06 13:16:27 +02:00
|
|
|
///
|
|
|
|
/// - for integral values, following operations are supported:
|
|
|
|
/// prefix and postfix increment (++) and decement (--)
|
2007-09-06 01:38:12 +02:00
|
|
|
///
|
2007-09-06 04:48:02 +02:00
|
|
|
/// - for all other types, InvalidArgumentException is thrown upon attempt of an arithmetic operation
|
2007-09-06 01:38:12 +02:00
|
|
|
///
|
2007-04-25 03:11:49 +02:00
|
|
|
/// A DynamicAny can be created from and converted to a value of any type for which a specialization of
|
|
|
|
/// DynamicAnyHolderImpl is available. For supported types, see DynamicAnyHolder documentation.
|
2007-04-18 18:22:57 +02:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
DynamicAny();
|
|
|
|
/// Creates a DynamicAny holding an int with value 0.
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
DynamicAny(const T &val):
|
|
|
|
_pHolder(new DynamicAnyHolderImpl<T>(val))
|
|
|
|
/// Creates the DynamicAny from the given value.
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DynamicAny(const char* pVal);
|
|
|
|
// Convenience constructor for const char* which gets mapped to a std::string internally, i.e. pVal is deep-copied.
|
|
|
|
|
|
|
|
DynamicAny(const DynamicAny& other);
|
|
|
|
/// Copy constructor.
|
|
|
|
|
|
|
|
~DynamicAny();
|
|
|
|
/// Destroys the DynamicAny.
|
|
|
|
|
|
|
|
void swap(DynamicAny& other);
|
|
|
|
/// Swaps the content of the this DynamicAny with the other DynamicAny.
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
void convert(T& val) const
|
2007-04-25 10:39:02 +02:00
|
|
|
/// Invoke this method to perform a safe conversion.
|
2007-04-18 18:22:57 +02:00
|
|
|
///
|
|
|
|
/// Example usage:
|
|
|
|
/// DynamicAny any("42");
|
|
|
|
/// int i;
|
|
|
|
/// any.convert(i);
|
2007-04-25 10:39:02 +02:00
|
|
|
///
|
|
|
|
/// Throws a RangeException if the value does not fit
|
|
|
|
/// into the result variable.
|
|
|
|
/// Throws a NotImplementedException if conversion is
|
|
|
|
/// not available for the given type.
|
2007-04-18 18:22:57 +02:00
|
|
|
{
|
|
|
|
_pHolder->convert(val);
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T convert() const
|
2007-04-25 10:39:02 +02:00
|
|
|
/// Invoke this method to perform a safe conversion.
|
2007-04-18 18:22:57 +02:00
|
|
|
///
|
|
|
|
/// Example usage:
|
|
|
|
/// DynamicAny any("42");
|
|
|
|
/// int i = any.convert<int>();
|
2007-04-25 10:39:02 +02:00
|
|
|
///
|
|
|
|
/// Throws a RangeException if the value does not fit
|
|
|
|
/// into the result variable.
|
|
|
|
/// Throws a NotImplementedException if conversion is
|
|
|
|
/// not available for the given type.
|
2007-04-18 18:22:57 +02:00
|
|
|
{
|
|
|
|
T result;
|
|
|
|
_pHolder->convert(result);
|
|
|
|
return result;
|
|
|
|
}
|
2007-04-23 09:12:12 +02:00
|
|
|
|
|
|
|
template <typename T>
|
2007-09-06 01:38:12 +02:00
|
|
|
operator T () const
|
2007-04-25 10:39:02 +02:00
|
|
|
/// Safe conversion operator for implicit type
|
2007-04-23 09:12:12 +02:00
|
|
|
/// conversions.
|
2007-04-25 10:39:02 +02:00
|
|
|
///
|
|
|
|
/// Throws a RangeException if the value does not fit
|
|
|
|
/// into the result variable.
|
|
|
|
/// Throws a NotImplementedException if conversion is
|
|
|
|
/// not available for the given type.
|
2007-04-23 09:12:12 +02:00
|
|
|
{
|
|
|
|
T result;
|
|
|
|
_pHolder->convert(result);
|
|
|
|
return result;
|
|
|
|
}
|
2007-09-06 01:38:12 +02:00
|
|
|
|
2007-04-26 08:24:35 +02:00
|
|
|
template <typename T>
|
|
|
|
const T& extract() const
|
|
|
|
/// Returns a const reference to the actual value.
|
|
|
|
///
|
|
|
|
/// Must be instantiated with the exact type of
|
|
|
|
/// the stored value, otherwise a BadCastException
|
|
|
|
/// is thrown.
|
|
|
|
{
|
|
|
|
DynamicAnyHolderImpl<T>* pHolder = dynamic_cast<DynamicAnyHolderImpl<T>*>(_pHolder);
|
|
|
|
if (pHolder)
|
|
|
|
return pHolder->value();
|
|
|
|
else
|
|
|
|
throw BadCastException();
|
|
|
|
}
|
2007-04-18 18:22:57 +02:00
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
template <typename T>
|
|
|
|
DynamicAny& operator = (const T& other)
|
2007-06-13 17:13:29 +02:00
|
|
|
/// Assignment operator
|
|
|
|
{
|
|
|
|
DynamicAny tmp(other);
|
|
|
|
swap(tmp);
|
|
|
|
return *this;
|
|
|
|
}
|
2007-09-06 01:38:12 +02:00
|
|
|
|
|
|
|
DynamicAny& operator = (const DynamicAny& other);
|
2007-09-06 04:48:02 +02:00
|
|
|
/// Assignment operator specialization for DynamicAny
|
2007-06-13 17:13:29 +02:00
|
|
|
|
2007-04-18 18:22:57 +02:00
|
|
|
template <typename T>
|
2007-09-06 01:38:12 +02:00
|
|
|
DynamicAny operator + (const T& other) const
|
|
|
|
/// Addition operator
|
2007-04-18 18:22:57 +02:00
|
|
|
{
|
2007-09-06 01:38:12 +02:00
|
|
|
return convert<T>() + other;
|
2007-04-18 18:22:57 +02:00
|
|
|
}
|
2007-09-06 01:38:12 +02:00
|
|
|
|
|
|
|
DynamicAny operator + (const DynamicAny& other) const;
|
|
|
|
/// Addition operator specialization for DynamicAny
|
|
|
|
|
|
|
|
DynamicAny operator + (const char* other) const;
|
|
|
|
/// Addition operator specialization for const char*
|
|
|
|
|
2007-09-06 13:16:27 +02:00
|
|
|
DynamicAny& operator ++ ();
|
|
|
|
/// Pre-increment operator
|
|
|
|
|
|
|
|
DynamicAny operator ++ (int);
|
|
|
|
/// Post-increment operator
|
|
|
|
|
|
|
|
DynamicAny& operator -- ();
|
|
|
|
/// Pre-decrement operator
|
|
|
|
|
|
|
|
DynamicAny operator -- (int);
|
|
|
|
/// Post-decrement operator
|
|
|
|
|
2007-04-26 11:27:21 +02:00
|
|
|
template <typename T>
|
2007-09-06 01:38:12 +02:00
|
|
|
DynamicAny& operator += (const T& other)
|
|
|
|
/// Addition asignment operator
|
2007-04-26 11:27:21 +02:00
|
|
|
{
|
2007-09-06 01:38:12 +02:00
|
|
|
return *this = convert<T>() + other;
|
2007-04-26 11:27:21 +02:00
|
|
|
}
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
DynamicAny& operator += (const DynamicAny& other);
|
|
|
|
/// Addition asignment operator specialization for DynamicAny
|
|
|
|
|
|
|
|
DynamicAny& operator += (const char* other);
|
|
|
|
/// Addition asignment operator specialization for const char*
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
DynamicAny operator - (const T& other) const
|
|
|
|
/// Subtraction operator
|
2007-04-26 11:27:21 +02:00
|
|
|
{
|
2007-09-06 01:38:12 +02:00
|
|
|
return convert<T>() - other;
|
2007-04-27 15:25:16 +02:00
|
|
|
}
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
DynamicAny operator - (const DynamicAny& other) const;
|
|
|
|
/// Subtraction operator specialization for DynamicAny
|
|
|
|
|
2007-04-27 15:25:16 +02:00
|
|
|
template <typename T>
|
2007-09-06 01:38:12 +02:00
|
|
|
DynamicAny& operator -= (const T& other)
|
|
|
|
/// Subtraction asignment operator
|
|
|
|
{
|
|
|
|
return *this = convert<T>() - other;
|
|
|
|
}
|
|
|
|
|
|
|
|
DynamicAny& operator -= (const DynamicAny& other);
|
2007-09-06 04:48:02 +02:00
|
|
|
/// Subtraction asignment operator specialization for DynamicAny
|
2007-09-06 01:38:12 +02:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
DynamicAny operator * (const T& other) const
|
|
|
|
/// Multiplication operator
|
|
|
|
{
|
|
|
|
return convert<T>() * other;
|
|
|
|
}
|
|
|
|
|
|
|
|
DynamicAny operator * (const DynamicAny& other) const;
|
|
|
|
/// Multiplication operator specialization for DynamicAny
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
DynamicAny& operator *= (const T& other)
|
|
|
|
/// Multiplication asignment operator
|
|
|
|
{
|
|
|
|
return *this = convert<T>() * other;
|
|
|
|
}
|
|
|
|
|
|
|
|
DynamicAny& operator *= (const DynamicAny& other);
|
|
|
|
/// Multiplication asignment operator specialization for DynamicAny
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
DynamicAny operator / (const T& other) const
|
|
|
|
/// Division operator
|
|
|
|
{
|
|
|
|
return convert<T>() / other;
|
|
|
|
}
|
|
|
|
|
|
|
|
DynamicAny operator / (const DynamicAny& other) const;
|
|
|
|
/// Division operator specialization for DynamicAny
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
DynamicAny& operator /= (const T& other)
|
|
|
|
/// Division asignment operator
|
2007-04-27 15:25:16 +02:00
|
|
|
{
|
2007-09-06 01:38:12 +02:00
|
|
|
return *this = convert<T>() / other;
|
2007-04-27 15:25:16 +02:00
|
|
|
}
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
DynamicAny& operator /= (const DynamicAny& other);
|
|
|
|
/// Division asignment operator specialization for DynamicAny
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool operator == (const T& other) const
|
|
|
|
/// Equality operator
|
|
|
|
{
|
|
|
|
return convert<T>() == other;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator == (const char* other) const;
|
|
|
|
/// Equality operator specialization for const char*
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
bool operator != (const T& other) const
|
2007-04-27 15:25:16 +02:00
|
|
|
/// Inequality operator
|
|
|
|
{
|
2007-09-06 01:38:12 +02:00
|
|
|
return convert<T>() != other;
|
2007-04-26 11:27:21 +02:00
|
|
|
}
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
bool operator != (const char* other) const;
|
|
|
|
/// Inequality operator specialization for const char*
|
|
|
|
|
2007-08-10 15:57:07 +02:00
|
|
|
bool isArray() const;
|
|
|
|
/// Returns true if DynamicAny represents a vector
|
|
|
|
|
|
|
|
bool isStruct() const;
|
|
|
|
/// Returns true if DynamicAny represents a struct
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
DynamicAny& operator [] (std::vector<DynamicAny>::size_type n);
|
2007-08-10 15:57:07 +02:00
|
|
|
/// Index operator, only use on DynamicAnys where isArray
|
|
|
|
/// returns true! In all other cases a BadCastException is thrown!
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
const DynamicAny& operator [] (std::vector<DynamicAny>::size_type n) const;
|
2007-08-10 15:57:07 +02:00
|
|
|
/// const Index operator, only use on DynamicAnys where isArray
|
|
|
|
/// returns true! In all other cases a BadCastException is thrown!
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
DynamicAny& operator [] (const std::string& name);
|
2007-08-10 15:57:07 +02:00
|
|
|
/// Index operator by name, only use on DynamicAnys where isStruct
|
|
|
|
/// returns true! In all other cases a BadCastException is thrown!
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
const DynamicAny& operator [] (const std::string& name) const;
|
2007-08-10 15:57:07 +02:00
|
|
|
/// Index operator by name, only use on DynamicAnys where isStruct
|
|
|
|
/// returns true! In all other cases a BadCastException is thrown!
|
|
|
|
|
|
|
|
const std::type_info& type() const;
|
2007-04-18 18:22:57 +02:00
|
|
|
/// Returns the type information of the stored content.
|
2007-08-10 15:57:07 +02:00
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
bool isInteger() const;
|
|
|
|
/// Returns true if stored value is integer.
|
|
|
|
|
|
|
|
bool isSigned() const;
|
|
|
|
/// Returns true if stored value is signed.
|
|
|
|
|
|
|
|
bool isNumeric() const;
|
|
|
|
/// Returns true if stored value is numeric.
|
|
|
|
/// Returns false for numeric strings (e.g. "123" is string, not number)
|
|
|
|
|
|
|
|
bool isString() const;
|
|
|
|
/// Returns true if stored value is std::string.
|
|
|
|
|
2007-08-10 15:57:07 +02:00
|
|
|
static DynamicAny parse(const std::string& val);
|
|
|
|
/// Parses the string which must be in JSON format
|
|
|
|
|
|
|
|
static std::string toString(const DynamicAny& any);
|
|
|
|
/// Converts the DynamicAny to a string in JSON format. Note that toString will return
|
|
|
|
/// a different result than any.convert<std::string>()!
|
2007-04-18 18:22:57 +02:00
|
|
|
|
2007-08-10 15:57:07 +02:00
|
|
|
private:
|
|
|
|
static DynamicAny parse(const std::string& val, std::string::size_type& offset);
|
|
|
|
/// Parses the string which must be in JSON format
|
|
|
|
|
|
|
|
static DynamicAny parseObject(const std::string& val, std::string::size_type& pos);
|
|
|
|
static DynamicAny parseArray(const std::string& val, std::string::size_type& pos);
|
|
|
|
static std::string parseString(const std::string& val, std::string::size_type& pos);
|
|
|
|
static void skipWhiteSpace(const std::string& val, std::string::size_type& pos);
|
2007-09-06 01:38:12 +02:00
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T add(const DynamicAny& other) const
|
|
|
|
{
|
|
|
|
return convert<T>() + other.convert<T>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T subtract(const DynamicAny& other) const
|
|
|
|
{
|
|
|
|
return convert<T>() - other.convert<T>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T multiply(const DynamicAny& other) const
|
|
|
|
{
|
|
|
|
return convert<T>() * other.convert<T>();
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename T>
|
|
|
|
T divide(const DynamicAny& other) const
|
|
|
|
{
|
|
|
|
return convert<T>() / other.convert<T>();
|
|
|
|
}
|
|
|
|
|
2007-04-18 18:22:57 +02:00
|
|
|
DynamicAnyHolder* _pHolder;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
inline void DynamicAny::swap(DynamicAny& ptr)
|
|
|
|
{
|
|
|
|
std::swap(_pHolder, ptr._pHolder);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline const std::type_info& DynamicAny::type() const
|
|
|
|
{
|
|
|
|
return _pHolder->type();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline DynamicAny DynamicAny::operator + (const char* other) const
|
|
|
|
{
|
|
|
|
return convert<std::string>() + other;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline DynamicAny& DynamicAny::operator += (const char*other)
|
|
|
|
{
|
|
|
|
return *this = convert<std::string>() + other;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool DynamicAny::operator == (const char* other) const
|
|
|
|
{
|
|
|
|
return convert<std::string>() == other;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool DynamicAny::operator != (const char* other) const
|
|
|
|
{
|
|
|
|
return convert<std::string>() != other;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-10 15:57:07 +02:00
|
|
|
inline bool DynamicAny::isArray() const
|
|
|
|
{
|
|
|
|
return _pHolder->isArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool DynamicAny::isStruct() const
|
|
|
|
{
|
|
|
|
return _pHolder->isStruct();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-09-06 01:38:12 +02:00
|
|
|
inline bool DynamicAny::isInteger() const
|
|
|
|
{
|
|
|
|
return _pHolder->isInteger();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool DynamicAny::isSigned() const
|
|
|
|
{
|
|
|
|
return _pHolder->isSigned();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool DynamicAny::isNumeric() const
|
|
|
|
{
|
|
|
|
return _pHolder->isNumeric();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
inline bool DynamicAny::isString() const
|
|
|
|
{
|
|
|
|
return _pHolder->isString();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-04-18 18:22:57 +02:00
|
|
|
} // namespace Poco
|
|
|
|
|
|
|
|
|
2007-04-26 08:24:35 +02:00
|
|
|
#endif // Foundation_DynamicAny_INCLUDED
|