19 #ifndef INCLUDED_COM_SUN_STAR_UNO_TYPE_H 20 #define INCLUDED_COM_SUN_STAR_UNO_TYPE_H 23 #include <com/sun/star/uno/TypeClass.hdl> 63 static void * SAL_CALL
operator new (
size_t nSize )
65 static void SAL_CALL
operator delete (
void * pMem )
67 static void * SAL_CALL
operator new ( size_t,
void * pMem )
69 static void SAL_CALL
operator delete (
void *,
void * )
82 inline Type( TypeClass eTypeClass, const ::rtl::OUString & rTypeName );
89 inline Type( TypeClass eTypeClass,
const sal_Char * pTypeName );
128 inline Type & SAL_CALL operator = (
const Type & rType );
135 {
return (TypeClass)_pType->eTypeClass; }
141 inline ::rtl::OUString SAL_CALL
getTypeName()
const;
333 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const ::
rtl::OUString * );
348 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const sal_Int16 * );
363 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const sal_uInt16 * );
378 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const sal_Int32 * );
393 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const sal_uInt32 * );
408 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const sal_Int64 * );
423 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const sal_uInt64 * );
438 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const
float * );
453 inline const ::
com::sun::star::uno::Type & SAL_CALL
getCppuType( const
double * );
474 inline const ::
com::sun::star::uno::Type & SAL_CALL
489 inline const ::
com::sun::star::uno::Type & SAL_CALL
Helper class to specify a type pointer for idl arrays.
Definition: Type.h:194
const ::com::sun::star::uno::Type & getCppuVoidType()
Gets the meta type of IDL type void.
Definition: Type.hxx:118
signed char sal_Int8
Definition: types.h:44
const ::com::sun::star::uno::Type & getCppuCharType()
Gets the meta type of IDL type char.
Definition: Type.hxx:150
const ::com::sun::star::uno::Type & getCppuBooleanType()
Gets the meta type of IDL type boolean.
Definition: Type.hxx:127
struct SAL_DLLPUBLIC_RTTI _typelib_TypeDescriptionReference typelib_TypeDescriptionReference
Holds a weak reference to a type description.
CPPU_DLLPUBLIC sal_Bool typelib_typedescriptionreference_isAssignableFrom(typelib_TypeDescriptionReference *pAssignable, typelib_TypeDescriptionReference *pFrom) SAL_THROW_EXTERN_C()
Tests if values of type pAssignable can be assigned by values of type pFrom.
This enum value can be used for creating a Type object granting a given type description reference...
Definition: Type.h:44
#define SAL_DEPRECATED(message)
Use as follows: SAL_DEPRECATED("Don't use, it's evil.") void doit(int nPara);.
Definition: types.h:483
#define SAL_WARN_UNUSED
Annotate classes where a compiler should warn if an instance is unused.
Definition: types.h:598
void getDescription(typelib_TypeDescription **ppDescr) const
Obtains a full type description of set type.
Definition: Type.h:147
bool isAssignableFrom(const Type &rType) const
Tests if values of this reflected type can be assigned by values of given type.
Definition: Type.h:165
SAL_DLLPUBLIC void * rtl_allocateMemory(sal_Size Bytes) SAL_THROW_EXTERN_C()
Allocate memory.
static typelib_TypeDescriptionReference * s_pType
Definition: Type.h:197
sal_uInt16 sal_Unicode
Definition: types.h:142
struct SAL_DLLPUBLIC_RTTI _typelib_TypeDescription typelib_TypeDescription
Full type description of a type.
~Type()
Destructor: Releases acquired C type description reference.
Definition: Type.h:120
unsigned char sal_Bool
Definition: types.h:39
TypeClass getTypeClass() const
Gets the type class of set type.
Definition: Type.h:134
__sal_NoAcquire
Definition: types.h:366
CPPU_DLLPUBLIC void typelib_typedescriptionreference_getDescription(typelib_TypeDescription **ppRet, typelib_TypeDescriptionReference *pRef) SAL_THROW_EXTERN_C()
Retrieves the type description for a given reference.
Definition: Enterable.hxx:26
const ::com::sun::star::uno::Type & getBooleanCppuType()
Gets the meta type of IDL type boolean.
Definition: Type.hxx:131
bool operator!=(const Any &rAny, const C &value)
Template unequality operator: compares set value of left side any to right side value.
Definition: Any.hxx:633
bool operator==(const Any &rAny, const C &value)
Template equality operator: compares set value of left side any to right side value.
Definition: Any.hxx:622
bool equals(const Type &rType) const
Compares two types.
Definition: Type.h:173
char sal_Char
A legacy synonym for char.
Definition: types.h:121
CPPU_DLLPUBLIC sal_Bool typelib_typedescriptionreference_equals(const typelib_TypeDescriptionReference *p1, const typelib_TypeDescriptionReference *p2) SAL_THROW_EXTERN_C()
Tests whether two types description references are equal, i.e.
const ::com::sun::star::uno::Type & getCharCppuType()
Gets the meta type of IDL type char.
Definition: Type.hxx:146
CPPU_DLLPUBLIC void typelib_typedescriptionreference_release(typelib_TypeDescriptionReference *pRef) SAL_THROW_EXTERN_C()
Increments reference count of type description reference.
SAL_DLLPUBLIC void rtl_freeMemory(void *Ptr) SAL_THROW_EXTERN_C()
Free memory.
rtl::OUString getTypeName(rtl::OUString const &rEnvDcp)
Get the OBI type part of an environment descriptor.
Definition: EnvDcp.hxx:38
UnoType_NoAcquire
Enum defining UNO_TYPE_NO_ACQUIRE for type description reference transfer.
Definition: Type.h:39
Definition: bootstrap.hxx:29
const ::com::sun::star::uno::Type & getCppuType(const ::com::sun::star::uno::Type *)
Gets the meta type of IDL type "type".
typelib_TypeDescriptionReference * getTypeLibType() const
Gets the C typelib type description reference pointer.
Definition: Type.h:154
const ::com::sun::star::uno::Type & getVoidCppuType()
Gets the meta type of IDL type void.
Definition: Type.hxx:122
C++ class representing an IDL meta type.
Definition: Type.h:54