diff options
Diffstat (limited to 'include/tools/link.hxx')
-rw-r--r-- | include/tools/link.hxx | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/include/tools/link.hxx b/include/tools/link.hxx index ea3a3668997c..ea55a3eb2e46 100644 --- a/include/tools/link.hxx +++ b/include/tools/link.hxx @@ -80,18 +80,6 @@ typedef sal_IntPtr (*PSTUB)( void*, void* ); IMPL_STUB( Class, Method, void* ) \ sal_IntPtr Class::Method( SAL_UNUSED_PARAMETER void* ) -#define IMPL_LINK_INLINE_START( Class, Method, ArgType, ArgName ) \ - inline sal_IntPtr Class::Method( ArgType ArgName ) - -#define IMPL_LINK_INLINE_END( Class, Method, ArgType, ArgName ) \ - IMPL_STUB( Class, Method, ArgType ) - -#define IMPL_LINK_NOARG_INLINE_START( Class, Method ) \ - inline sal_IntPtr Class::Method( SAL_UNUSED_PARAMETER void* ) - -#define IMPL_LINK_NOARG_INLINE_END( Class, Method ) \ - IMPL_STUB( Class, Method, void* ) - #define EMPTYARG class TOOLS_DLLPUBLIC Link |