diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-04 16:08:15 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-03-05 09:44:19 -0600 |
commit | 8b40ddd9f092ea97707fbde8c4d7dd58ac867af2 (patch) | |
tree | 3d32ade8dbf3bcda79dad4b7f6734ee738f4b083 /include/ucbhelper/macros.hxx | |
parent | a5aad2ac58f01702b91db051e66e2e855de00b10 (diff) |
kill XINTERFACE_IMPL_4
Change-Id: I88e2e62b82f40cfa3e892023d381f7611e093fd6
Diffstat (limited to 'include/ucbhelper/macros.hxx')
-rw-r--r-- | include/ucbhelper/macros.hxx | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/include/ucbhelper/macros.hxx b/include/ucbhelper/macros.hxx index c7f87f33de97..6b80fc89fdb9 100644 --- a/include/ucbhelper/macros.hxx +++ b/include/ucbhelper/macros.hxx @@ -62,33 +62,6 @@ com::sun::star::uno::Any SAL_CALL Class::queryInterface( \ return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); \ }\ -// 4 interfaces implemented -#define XINTERFACE_IMPL_4( Class, Ifc1, Ifc2, Ifc3, Ifc4 ) \ -void SAL_CALL Class::acquire() \ - throw() \ -{ \ - OWeakObject::acquire(); \ -} \ - \ -void SAL_CALL Class::release() \ - throw() \ -{ \ - OWeakObject::release(); \ -} \ -com::sun::star::uno::Any SAL_CALL Class::queryInterface( \ - const com::sun::star::uno::Type & rType ) \ - throw( com::sun::star::uno::RuntimeException, std::exception ) \ -{ \ - com::sun::star::uno::Any aRet = cppu::queryInterface( rType, \ - (static_cast< Ifc1* >(this)), \ - (static_cast< Ifc2* >(this)), \ - (static_cast< Ifc3* >(this)), \ - (static_cast< Ifc4* >(this)) \ - ); \ - return aRet.hasValue() ? aRet : OWeakObject::queryInterface( rType ); \ -}\ - -// 9 interfaces implemented // XTypeProvider decl. |