diff options
author | Oliver Bolte <obo@openoffice.org> | 2003-09-04 09:51:55 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2003-09-04 09:51:55 +0000 |
commit | bce2e64145217c830451a25839910ffa9c77f62b (patch) | |
tree | 8627330e712e3281b76d4da996819f6d14060827 /cppu | |
parent | 9561d993dec91c9996788f3e6b4edd799d545b28 (diff) |
INTEGRATION: CWS cliuno01 (1.9.30); FILE MERGED
2003/09/01 16:51:51 dbo 1.9.30.1: #107130# C++ bool
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/inc/com/sun/star/uno/Type.h | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/cppu/inc/com/sun/star/uno/Type.h b/cppu/inc/com/sun/star/uno/Type.h index 9d78b08438ef..440a442ee2ea 100644 --- a/cppu/inc/com/sun/star/uno/Type.h +++ b/cppu/inc/com/sun/star/uno/Type.h @@ -2,9 +2,9 @@ * * $RCSfile: Type.h,v $ * - * $Revision: 1.9 $ + * $Revision: 1.10 $ * - * last change: $Author: dbo $ $Date: 2002-08-21 09:19:07 $ + * last change: $Author: obo $ $Date: 2003-09-04 10:51:55 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -292,6 +292,13 @@ inline const ::com::sun::star::uno::Type & SAL_CALL getBooleanCppuType() SAL_THR @return type of IDL type boolean */ inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( const sal_Bool * ) SAL_THROW( () ); +/** Gets the meta type of IDL type boolean. + + @param dummy typed pointer for function signature + @return type of IDL type boolean +*/ +inline const ::com::sun::star::uno::Type & SAL_CALL getCppuType( + bool const * ) SAL_THROW( () ); /** Gets the meta type of IDL type char. |