23 #ifndef INCLUDED_COM_SUN_STAR_UNO_REFERENCE_H 24 #define INCLUDED_COM_SUN_STAR_UNO_REFERENCE_H 31 #if defined LIBO_INTERNAL_ONLY 32 #include <type_traits> 46 class RuntimeException;
79 inline static XInterface * SAL_CALL
iquery( XInterface * pInterface,
const Type & rType );
87 inline static XInterface * SAL_CALL
iquery_throw( XInterface * pInterface,
const Type & rType );
94 XInterface * SAL_CALL
get()
const 101 bool SAL_CALL
is()
const 104 #if defined LIBO_INTERNAL_ONLY 109 explicit operator bool()
const 119 inline bool SAL_CALL
operator == ( XInterface * pInterface )
const;
126 inline bool SAL_CALL
operator != ( XInterface * pInterface )
const;
134 inline bool SAL_CALL
operator == (
const BaseReference & rRef )
const;
141 inline bool SAL_CALL
operator != (
const BaseReference & rRef )
const;
148 inline bool SAL_CALL
operator < (
const BaseReference & rRef )
const;
182 template<
class interface_type >
183 class SAL_DLLPUBLIC_RTTI Reference :
public BaseReference
190 inline static XInterface * SAL_CALL iquery( XInterface * pInterface );
197 inline static XInterface * SAL_CALL iquery_throw( XInterface * pInterface );
203 inline static interface_type * SAL_CALL iset_throw( interface_type * pInterface );
216 static interface_type * castFromXInterface(XInterface * p) {
217 return static_cast< interface_type *
>(
static_cast< void *
>(p));
231 static XInterface * castToXInterface(interface_type * p) {
232 return static_cast< XInterface *
>(
static_cast< void *
>(p));
238 static void * SAL_CALL
operator new ( ::size_t nSize )
240 static void SAL_CALL
operator delete (
void * pMem )
242 static void * SAL_CALL
operator new ( ::size_t,
void * pMem )
244 static void SAL_CALL
operator delete (
void *,
void * )
260 inline Reference( const Reference< interface_type > & rRef );
262 #if defined LIBO_INTERNAL_ONLY 267 inline Reference( Reference< interface_type > && rRef ) noexcept;
277 template<
class derived_type >
279 const Reference< derived_type > & rRef,
281 std::is_base_of_v<interface_type, derived_type>
282 && !std::is_same_v<interface_type, XInterface>,
void *> =
nullptr);
289 inline Reference( interface_type * pInterface );
332 #ifdef LIBO_INTERNAL_ONLY 384 interface_type * SAL_CALL operator -> ()
const {
385 assert(_pInterface != NULL);
386 return castFromXInterface(_pInterface);
394 interface_type & SAL_CALL operator * ()
const {
395 assert(_pInterface != NULL);
396 return *castFromXInterface(_pInterface);
403 interface_type * SAL_CALL
get()
const 404 {
return castFromXInterface(_pInterface); }
408 inline void SAL_CALL clear();
421 inline bool SAL_CALL
set( interface_type * pInterface );
429 inline bool SAL_CALL
set( interface_type * pInterface,
__sal_NoAcquire dummy);
488 #ifdef LIBO_INTERNAL_ONLY 541 #if defined LIBO_INTERNAL_ONLY 562 #if defined LIBO_INTERNAL_ONLY UnoReference_NoAcquire
Enum defining UNO_REF_NO_ACQUIRE for setting reference without acquiring a given interface.
Definition: Reference.h:55
This enum value can be used for creating a reference granting a given interface, i.e.
Definition: Reference.h:60
#define COVERITY_NOEXCEPT_FALSE
To markup destructors that coverity warns might throw exceptions which won't throw in practice...
Definition: types.h:349
bool is() const
Checks if reference is null.
Definition: Reference.h:101
static XInterface * iquery_throw(XInterface *pInterface, const Type &rType)
Queries given interface for type rType.
Definition: Reference.hxx:77
bool operator!=(XInterface *pInterface) const
Inequality operator: compares two interfaces Checks if both references are null or refer to the same ...
Definition: Reference.hxx:452
This enum value can be used for implicit interface query.
Definition: Reference.h:157
This enum value can be used for implicit interface query.
Definition: Reference.h:166
bool operator<(const BaseReference &rRef) const
Needed by some STL containers.
Definition: Reference.hxx:433
bool operator==(XInterface *pInterface) const
Equality operator: compares two interfaces Checks if both references are null or refer to the same ob...
Definition: Reference.hxx:415
#define SAL_DEPRECATED(message)
Use as follows: SAL_DEPRECATED("Don't use, it's evil.") void doit(int nPara);.
Definition: types.h:474
C++ class representing an IDL any.
Definition: Any.h:57
SAL_DLLPUBLIC void * rtl_allocateMemory(sal_Size Bytes) SAL_THROW_EXTERN_C()
Allocate memory.
UnoReference_Query
Enum defining UNO_QUERY for implicit interface query.
Definition: Reference.h:153
Definition: Reference.h:175
Template reference class for interface type derived from BaseReference.
Definition: unotype.hxx:43
__sal_NoAcquire
Definition: types.h:352
UnoReference_QueryThrow
Enum defining UNO_QUERY_THROW for implicit interface query.
Definition: Reference.h:162
#define SAL_WARN_UNUSED_RESULT
Use this as markup for functions and methods whose return value must be checked.
Definition: types.h:284
This base class serves as a base class for all template reference classes and has been introduced due...
Definition: Reference.h:66
SAL_DLLPUBLIC void rtl_freeMemory(void *Ptr) SAL_THROW_EXTERN_C()
Free memory.
static XInterface * iquery(XInterface *pInterface, const Type &rType)
Queries given interface for type rType.
Definition: Reference.hxx:54
UnoReference_SetThrow
Enum defining UNO_SET_THROW for throwing if attempts are made to assign a null interface.
Definition: Reference.h:173
C++ class representing an IDL meta type.
Definition: Type.h:58
XInterface * _pInterface
the interface pointer
Definition: Reference.h:71