INTEGRATION: CWS presfixes08 (1.15.54); FILE MERGED

2005/09/14 16:27:56 dbo 1.15.54.1: #i46618# added get_pointer: support for boost::mem_fn and boost::bind
This commit is contained in:
Oliver Bolte
2005-10-11 08:01:44 +00:00
parent e6ffb3773e
commit aff0b6f118

View File

@@ -4,9 +4,9 @@
*
* $RCSfile: Reference.h,v $
*
* $Revision: 1.16 $
* $Revision: 1.17 $
*
* last change: $Author: rt $ $Date: 2005-09-08 08:33:39 $
* last change: $Author: obo $ $Date: 2005-10-11 09:01:44 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -451,6 +451,15 @@ public:
inline static Reference< interface_type > SAL_CALL query( XInterface * pInterface ) SAL_THROW( (RuntimeException) );
};
/** @internal
Enables boost::mem_fn and boost::bind to recognize Reference.
*/
template <typename T>
inline T * get_pointer( Reference<T> const& r )
{
return r.get();
}
}
}
}