summaryrefslogtreecommitdiff
path: root/cppu/inc/uno
diff options
context:
space:
mode:
authorKurt Zenker <kz@openoffice.org>2007-05-09 12:35:28 +0000
committerKurt Zenker <kz@openoffice.org>2007-05-09 12:35:28 +0000
commit1d1ab223e6d9561aeb701424805f27ca70010cf2 (patch)
tree22477f06743e1cc02cda48585385d6ec97c0662e /cppu/inc/uno
parent25e2b9a9aef0ea8eaf8392bb9df9e0267d503dfc (diff)
INTEGRATION: CWS bunoexttm (1.10.20); FILE MERGED
2007/01/25 12:26:48 kr 1.10.20.1: EnvDcp.h
Diffstat (limited to 'cppu/inc/uno')
-rw-r--r--cppu/inc/uno/mapping.hxx18
1 files changed, 14 insertions, 4 deletions
diff --git a/cppu/inc/uno/mapping.hxx b/cppu/inc/uno/mapping.hxx
index 684c70ee9217..017c0b723232 100644
--- a/cppu/inc/uno/mapping.hxx
+++ b/cppu/inc/uno/mapping.hxx
@@ -4,9 +4,9 @@
*
* $RCSfile: mapping.hxx,v $
*
- * $Revision: 1.10 $
+ * $Revision: 1.11 $
*
- * last change: $Author: rt $ $Date: 2006-10-27 12:15:11 $
+ * last change: $Author: kz $ $Date: 2007-05-09 13:35:28 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -323,12 +323,17 @@ inline void * Mapping::mapInterface(
return pOut;
}
-/** Maps an binary C UNO interface to be used in the currently used compiler environment.
+/** Deprecated. This function DOES NOT WORK with Purpose Environments
+ (http://wiki.services.openoffice.org/wiki/Uno/Binary/Spec/Purpose Environments)
+
+ Maps an binary C UNO interface to be used in the currently used compiler environment.
@tplparam C interface type
@param ppRet inout returned interface pointer
@param pUnoI binary C UNO interface
@return true if successful, false otherwise
+
+ @deprecated
*/
template< class C >
inline sal_Bool mapToCpp( Reference< C > * ppRet, uno_Interface * pUnoI ) SAL_THROW( () )
@@ -341,12 +346,17 @@ inline sal_Bool mapToCpp( Reference< C > * ppRet, uno_Interface * pUnoI ) SAL_TH
(void **)ppRet, pUnoI, ::cppu::getTypeFavourUnsigned( ppRet ) );
return (0 != *ppRet);
}
-/** Maps an UNO interface of the currently used compiler environment to binary C UNO.
+/** Deprecated. This function DOES NOT WORK with Purpose Environments
+ (http://wiki.services.openoffice.org/wiki/Uno/Binary/Spec/Purpose Environments)
+
+ Maps an UNO interface of the currently used compiler environment to binary C UNO.
@tplparam C interface type
@param ppRet inout returned interface pointer
@param x interface reference
@return true if successful, false otherwise
+
+ @deprecated
*/
template< class C >
inline sal_Bool mapToUno( uno_Interface ** ppRet, const Reference< C > & x ) SAL_THROW( () )