summaryrefslogtreecommitdiff
path: root/cppuhelper/inc/cppuhelper/servicefactory.hxx
diff options
context:
space:
mode:
authorDaniel Boelzle <dbo@openoffice.org>2001-03-09 11:15:28 +0000
committerDaniel Boelzle <dbo@openoffice.org>2001-03-09 11:15:28 +0000
commit414591811ccbd8120f697bfc8bfd44c3bb1f28ac (patch)
treeb289b2d67ab60e558a780e0d9a7d65947957e6a3 /cppuhelper/inc/cppuhelper/servicefactory.hxx
parentfee2a34fc7ce4301dd5335dd7c6072f5696480dd (diff)
revised function throw () clauses, removed obsolete macros.hxx
Diffstat (limited to 'cppuhelper/inc/cppuhelper/servicefactory.hxx')
-rw-r--r--cppuhelper/inc/cppuhelper/servicefactory.hxx29
1 files changed, 16 insertions, 13 deletions
diff --git a/cppuhelper/inc/cppuhelper/servicefactory.hxx b/cppuhelper/inc/cppuhelper/servicefactory.hxx
index ae57bfe53d38..752d3cf8d805 100644
--- a/cppuhelper/inc/cppuhelper/servicefactory.hxx
+++ b/cppuhelper/inc/cppuhelper/servicefactory.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: servicefactory.hxx,v $
*
- * $Revision: 1.2 $
+ * $Revision: 1.3 $
*
- * last change: $Author: dbo $ $Date: 2000-12-21 13:21:08 $
+ * last change: $Author: dbo $ $Date: 2001-03-09 12:15:26 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -100,11 +100,12 @@ namespace cppu
* path.
*/
::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > SAL_CALL
- createRegistryServiceFactory( const ::rtl::OUString & rWriteRegistryFile,
- const ::rtl::OUString & rReadRegistryFile,
- sal_Bool bReadOnly = sal_False,
- const ::rtl::OUString & rBootstrapPath = ::rtl::OUString() )
- throw( ::com::sun::star::uno::Exception );
+createRegistryServiceFactory(
+ const ::rtl::OUString & rWriteRegistryFile,
+ const ::rtl::OUString & rReadRegistryFile,
+ sal_Bool bReadOnly = sal_False,
+ const ::rtl::OUString & rBootstrapPath = ::rtl::OUString() )
+ SAL_THROW( (::com::sun::star::uno::Exception) );
/**
@@ -117,10 +118,11 @@ namespace cppu
* will not be created if not exist.
*/
inline ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > SAL_CALL
- createRegistryServiceFactory( const ::rtl::OUString & rRegistryFile,
- sal_Bool bReadOnly = sal_False,
- const ::rtl::OUString & rBootstrapPath = ::rtl::OUString() )
- throw( ::com::sun::star::uno::Exception )
+createRegistryServiceFactory(
+ const ::rtl::OUString & rRegistryFile,
+ sal_Bool bReadOnly = sal_False,
+ const ::rtl::OUString & rBootstrapPath = ::rtl::OUString() )
+ SAL_THROW( (::com::sun::star::uno::Exception) )
{
return ::cppu::createRegistryServiceFactory( rRegistryFile, ::rtl::OUString(), bReadOnly, rBootstrapPath );
}
@@ -130,8 +132,9 @@ inline ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFa
* This bootstraps a service factory without initialize a registry.
*/
inline ::com::sun::star::uno::Reference< ::com::sun::star::lang::XMultiServiceFactory > SAL_CALL
- createServiceFactory(const ::rtl::OUString & rBootstrapPath = ::rtl::OUString())
- throw( ::com::sun::star::uno::Exception )
+createServiceFactory(
+ const ::rtl::OUString & rBootstrapPath = ::rtl::OUString() )
+ SAL_THROW( (::com::sun::star::uno::Exception) )
{
return ::cppu::createRegistryServiceFactory( ::rtl::OUString(), ::rtl::OUString(), sal_False, rBootstrapPath );
}