19 #ifndef INCLUDED_CPPUHELPER_PROPTYPEHLP_H
20 #define INCLUDED_CPPUHELPER_PROPTYPEHLP_H
34 template <
class target >
35 inline void SAL_CALL
convertPropertyValue( target &value , const ::com::sun::star::uno::Any & a);
37 template <
class target >
43 inline void SAL_CALL
convertPropertyValue( sal_Int64 & target , const ::com::sun::star::uno::Any & source );
44 inline void SAL_CALL
convertPropertyValue( sal_uInt64 & target, const ::com::sun::star::uno::Any & source );
45 inline void SAL_CALL
convertPropertyValue( sal_Int32 & target , const ::com::sun::star::uno::Any & source );
46 inline void SAL_CALL
convertPropertyValue( sal_uInt32 & target, const ::com::sun::star::uno::Any & source );
47 inline void SAL_CALL
convertPropertyValue( sal_Int16 & target , const ::com::sun::star::uno::Any & source );
48 inline void SAL_CALL
convertPropertyValue( sal_uInt16 & target, const ::com::sun::star::uno::Any & source );
50 inline void SAL_CALL
convertPropertyValue(
float & target , const ::com::sun::star::uno::Any & source );
51 inline void SAL_CALL
convertPropertyValue(
double &target , const ::com::sun::star::uno::Any &source );
C++ class representing an IDL any.
Definition: Any.h:49
signed char sal_Int8
Definition: types.h:53
This String class provides base functionality for C++ like Unicode character array handling...
Definition: ustring.hxx:115
void convertPropertyValue(target &value, const ::com::sun::star::uno::Any &a)
Converts the value stored in an any to a concrete C++ type.
Definition: proptypehlp.hxx:37