Mark overriding cppuhelper class template member functions as SAL_OVERRIDE
Change-Id: I51942d37eacd11000c08a784d8a995bd8f9f972c
This commit is contained in:
parent
b710952a3a
commit
8fb6f4a74b
@ -154,14 +154,14 @@ protected:
|
||||
public:
|
||||
virtual ::com::sun::star::uno::Any
|
||||
SAL_CALL queryInterface( ::com::sun::star::uno::Type const& rType )
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::ImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int8>
|
||||
SAL_CALL getImplementationId()
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -198,21 +198,21 @@ class SAL_NO_VTABLE BOOST_PP_CAT(WeakImplHelper,
|
||||
public:
|
||||
virtual ::com::sun::star::uno::Any
|
||||
SAL_CALL queryInterface( ::com::sun::star::uno::Type const& rType )
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
return ::cppu::WeakImplHelper_query(
|
||||
rType, cd::get(), this, static_cast<OWeakObject *>(this) );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int8>
|
||||
SAL_CALL getImplementationId()
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -275,7 +275,7 @@ protected:
|
||||
public:
|
||||
virtual ::com::sun::star::uno::Any
|
||||
SAL_CALL queryInterface( ::com::sun::star::uno::Type const& rType )
|
||||
throw (::com::sun::star::uno::RuntimeException)
|
||||
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
::com::sun::star::uno::Any const aRet(
|
||||
::cppu::ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
@ -283,19 +283,19 @@ public:
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException)
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
return ::cppu::ImplInhHelper_getTypes(
|
||||
cd::get(), BaseClass::getTypes() );
|
||||
}
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int8>
|
||||
SAL_CALL getImplementationId()
|
||||
throw (::com::sun::star::uno::RuntimeException)
|
||||
throw (::com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ::cppu::ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -346,35 +346,35 @@ public:
|
||||
|
||||
virtual ::com::sun::star::uno::Any
|
||||
SAL_CALL queryInterface( ::com::sun::star::uno::Type const& rType )
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
return ::cppu::WeakComponentImplHelper_query(
|
||||
rType, cd::get(), this,
|
||||
static_cast< ::cppu::WeakComponentImplHelperBase * >(this) );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int8>
|
||||
SAL_CALL getImplementationId()
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
// implement XComponent directly avoiding ambiguities:
|
||||
virtual void SAL_CALL dispose()
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(
|
||||
::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener>
|
||||
const & xListener ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
const & xListener ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener( xListener ); }
|
||||
virtual void SAL_CALL removeEventListener(
|
||||
::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener>
|
||||
const & xListener ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
const & xListener ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener( xListener ); }
|
||||
};
|
||||
|
||||
@ -404,22 +404,22 @@ public:
|
||||
|
||||
virtual ::com::sun::star::uno::Any
|
||||
SAL_CALL queryInterface( ::com::sun::star::uno::Type const& rType )
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
return ::cppu::WeakComponentImplHelper_query(
|
||||
rType, cd::get(), this,
|
||||
static_cast< ::cppu::WeakComponentImplHelperBase * >(this) );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type >
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence<sal_Int8>
|
||||
SAL_CALL getImplementationId()
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ::cppu::ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper1( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper1( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper1( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper10( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper10( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper10( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper11( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper11( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper11( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper12( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper12( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper12( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper2( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper2( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -129,17 +129,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper2( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper3( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper3( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper3( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper4( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper4( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper4( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper5( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper5( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper5( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper6( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper6( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper6( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper7( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper7( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper7( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper8( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper8( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -128,17 +128,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper8( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -50,21 +50,21 @@ namespace cppu
|
||||
inline WeakComponentImplHelper9( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL dispose()throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::dispose(); }
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL addEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::addEventListener(xListener); }
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual void SAL_CALL removeEventListener(const ::com::sun::star::uno::Reference< ::com::sun::star::lang::XEventListener > & xListener)throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::removeEventListener(xListener); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -88,15 +88,15 @@ namespace cppu
|
||||
inline PartialWeakComponentImplHelper9( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_query( rType, cd::get(), this, (WeakComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
|
||||
@ -127,17 +127,17 @@ namespace cppu
|
||||
inline WeakAggComponentImplHelper9( ::osl::Mutex & rMutex ) throw ()
|
||||
: WeakAggComponentImplHelperBase( rMutex )
|
||||
{}
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryInterface( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelperBase::queryInterface( rType ); }
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Any SAL_CALL queryAggregation( ::com::sun::star::uno::Type const & rType ) throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_queryAgg( rType, cd::get(), this, (WeakAggComponentImplHelperBase *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ WeakAggComponentImplHelperBase::release(); }
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< ::com::sun::star::uno::Type > SAL_CALL getTypes() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggComponentImplHelper_getTypes( cd::get() ); }
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual ::com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -69,11 +69,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData1 < Ifc1, ImplHelper1<Ifc1> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -101,15 +101,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, WeakImplHelper1< Ifc1 > > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -133,17 +133,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData1< Ifc1, WeakAggImplHelper1< Ifc1 > > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -197,20 +197,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper1() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -265,22 +265,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper1() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -79,11 +79,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, ImplHelper10<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -107,15 +107,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, WeakImplHelper10<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -139,17 +139,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData10< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, WeakAggImplHelper10<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -203,20 +203,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper10() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -271,22 +271,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper10() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -80,11 +80,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, ImplHelper11<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -108,15 +108,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, WeakImplHelper11<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -140,17 +140,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData11< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, WeakAggImplHelper11<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -204,20 +204,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper11() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -272,22 +272,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper11() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -81,11 +81,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, ImplHelper12<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -109,15 +109,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, WeakImplHelper12<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -141,17 +141,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData12< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, WeakAggImplHelper12<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -205,20 +205,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper12() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -273,22 +273,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper12() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -82,11 +82,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, ImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -110,15 +110,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, WeakImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -142,17 +142,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData13< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13, WeakAggImplHelper13<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, Ifc10, Ifc11, Ifc12, Ifc13> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -206,20 +206,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper13() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -274,22 +274,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper13() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -70,11 +70,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData2 < Ifc1, Ifc2, ImplHelper2<Ifc1, Ifc2> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -98,15 +98,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData2 < Ifc1, Ifc2, WeakImplHelper2<Ifc1, Ifc2> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -130,17 +130,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData2 < Ifc1, Ifc2, WeakAggImplHelper2<Ifc1, Ifc2> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -194,20 +194,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper2() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -262,22 +262,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper2() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -71,11 +71,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData3 < Ifc1, Ifc2, Ifc3, ImplHelper3<Ifc1, Ifc2, Ifc3> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -99,15 +99,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData3 < Ifc1, Ifc2, Ifc3, WeakImplHelper3<Ifc1, Ifc2, Ifc3> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -131,17 +131,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData3 < Ifc1, Ifc2, Ifc3, WeakAggImplHelper3<Ifc1, Ifc2, Ifc3> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -196,20 +196,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper3() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -264,22 +264,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper3() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -73,11 +73,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, ImplHelper4<Ifc1, Ifc2, Ifc3, Ifc4> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -101,15 +101,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, WeakImplHelper4<Ifc1, Ifc2, Ifc3, Ifc4> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -133,17 +133,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData4 < Ifc1, Ifc2, Ifc3, Ifc4, WeakAggImplHelper4<Ifc1, Ifc2, Ifc3, Ifc4> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -197,20 +197,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper4() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -265,22 +265,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper4() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -74,11 +74,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData5 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, ImplHelper5<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -102,15 +102,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData5 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, WeakImplHelper5<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -134,17 +134,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData5 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, WeakAggImplHelper5<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -198,20 +198,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper5() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -266,22 +266,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper5() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -75,11 +75,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData6 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, ImplHelper6<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -103,15 +103,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData6 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, WeakImplHelper6<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -135,17 +135,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData6 < Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, WeakAggImplHelper6<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -199,20 +199,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper6() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -267,22 +267,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper6() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -76,11 +76,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, ImplHelper7<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -104,15 +104,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, WeakImplHelper7<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -136,17 +136,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData7< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, WeakAggImplHelper7<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -200,20 +200,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper7() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -268,22 +268,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper7() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -77,11 +77,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, ImplHelper8<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -105,15 +105,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, WeakImplHelper8<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -137,17 +137,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData8< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, WeakAggImplHelper8<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -201,20 +201,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper8() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -269,22 +269,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper8() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
@ -78,11 +78,11 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, ImplHelper9<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_query( rType, cd::get(), this ); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
|
||||
#if !defined _MSC_VER // public -> protected changes mangled names there
|
||||
@ -106,15 +106,15 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, WeakImplHelper9<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_query( rType, cd::get(), this, (OWeakObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -138,17 +138,17 @@ namespace cppu
|
||||
{
|
||||
struct cd : public rtl::StaticAggregate< class_data, ImplClassData9< Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9, WeakAggImplHelper9<Ifc1, Ifc2, Ifc3, Ifc4, Ifc5, Ifc6, Ifc7, Ifc8, Ifc9> > > {};
|
||||
public:
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return OWeakAggObject::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_queryAgg( rType, cd::get(), this, (OWeakAggObject *)this ); }
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ OWeakAggObject::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return WeakAggImplHelper_getTypes( cd::get() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -202,20 +202,20 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
ImplInheritanceHelper9() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryInterface( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
/** Implementation helper implementing interfaces com::sun::star::lang::XTypeProvider and
|
||||
@ -270,22 +270,22 @@ namespace cppu
|
||||
BaseClass(arg1, arg2, arg3, arg4, arg5, arg6) {}
|
||||
public:
|
||||
AggImplInheritanceHelper9() {}
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryInterface( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return BaseClass::queryInterface( rType ); }
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Any SAL_CALL queryAggregation( com::sun::star::uno::Type const & rType ) throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{
|
||||
com::sun::star::uno::Any aRet( ImplHelper_queryNoXInterface( rType, cd::get(), this ) );
|
||||
if (aRet.hasValue())
|
||||
return aRet;
|
||||
return BaseClass::queryAggregation( rType );
|
||||
}
|
||||
virtual void SAL_CALL acquire() throw ()
|
||||
virtual void SAL_CALL acquire() throw () SAL_OVERRIDE
|
||||
{ BaseClass::acquire(); }
|
||||
virtual void SAL_CALL release() throw ()
|
||||
virtual void SAL_CALL release() throw () SAL_OVERRIDE
|
||||
{ BaseClass::release(); }
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< com::sun::star::uno::Type > SAL_CALL getTypes() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplInhHelper_getTypes( cd::get(), BaseClass::getTypes() ); }
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException)
|
||||
virtual com::sun::star::uno::Sequence< sal_Int8 > SAL_CALL getImplementationId() throw (com::sun::star::uno::RuntimeException) SAL_OVERRIDE
|
||||
{ return ImplHelper_getImplementationId( cd::get() ); }
|
||||
};
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user