summaryrefslogtreecommitdiff
path: root/sot/inc
diff options
context:
space:
mode:
authorGert Faller <gertfaller@aliceadsl.fr>2010-12-12 10:33:58 +0100
committerGert Faller <gertfaller@aliceadsl.fr>2010-12-12 10:33:58 +0100
commitf72d546da78c65afbb78d818d505a0b9049f0049 (patch)
tree4337f7024a6a9f12e29a90102147a58a8daa8c5b /sot/inc
parentd1e95b771e91315a69b4862198f0563bdbb58888 (diff)
cleaning of __EXPORT define
Diffstat (limited to 'sot/inc')
-rw-r--r--sot/inc/sot/object.hxx50
1 files changed, 25 insertions, 25 deletions
diff --git a/sot/inc/sot/object.hxx b/sot/inc/sot/object.hxx
index cb876fedcab1..28239d58c8e4 100644
--- a/sot/inc/sot/object.hxx
+++ b/sot/inc/sot/object.hxx
@@ -46,35 +46,35 @@
void TestMemberInvariant( BOOL bPrint );
#define SO2_IMPL_INVARIANT(ClassName) \
-void __EXPORT ClassName::TestObjRef( BOOL bFree ) \
+void ClassName::TestObjRef( BOOL bFree ) \
{ \
TestMemberObjRef( bFree ); \
} \
-void __EXPORT ClassName::TestInvariant( BOOL bPrint ) \
+void ClassName::TestInvariant( BOOL bPrint ) \
{ \
TestMemberInvariant( bPrint ); \
}
#define SO2_IMPL_INVARIANT1(ClassName,Super1) \
-void __EXPORT ClassName::TestObjRef( BOOL bFree ) \
+void ClassName::TestObjRef( BOOL bFree ) \
{ \
TestMemberObjRef( bFree ); \
Super1::TestObjRef( bFree ); \
} \
-void __EXPORT ClassName::TestInvariant( BOOL bPrint ) \
+void ClassName::TestInvariant( BOOL bPrint ) \
{ \
TestMemberInvariant( bPrint ); \
Super1::TestInvariant( bPrint ); \
}
#define SO2_IMPL_INVARIANT2(ClassName,Super1,Super2) \
-void __EXPORT ClassName::TestObjRef( BOOL bFree ) \
+void ClassName::TestObjRef( BOOL bFree ) \
{ \
TestMemberObjRef( bFree ); \
Super1::TestObjRef( bFree ); \
Super2::TestObjRef( bFree ); \
} \
-void __EXPORT ClassName::TestInvariant( BOOL bPrint ) \
+void ClassName::TestInvariant( BOOL bPrint ) \
{ \
TestMemberInvariant( bPrint ); \
Super1::TestInvariant( bPrint ); \
@@ -82,14 +82,14 @@ void __EXPORT ClassName::TestInvariant( BOOL bPrint ) \
}
#define SO2_IMPL_INVARIANT3(ClassName,Super1,Super2,Super3) \
-void __EXPORT ClassName::TestObjRef( BOOL bFree ) \
+void ClassName::TestObjRef( BOOL bFree ) \
{ \
TestMemberObjRef( bFree ); \
Super1::TestObjRef( bFree ); \
Super2::TestObjRef( bFree ); \
Super3::TestObjRef( bFree ); \
} \
-void __EXPORT ClassName::TestInvariant( BOOL bPrint ) \
+void ClassName::TestInvariant( BOOL bPrint ) \
{ \
TestMemberInvariant( bPrint ); \
Super1::TestInvariant( bPrint ); \
@@ -98,7 +98,7 @@ void __EXPORT ClassName::TestInvariant( BOOL bPrint ) \
}
#define SO2_IMPL_INVARIANT4(ClassName,Super1,Super2,Super3,Super4) \
-void __EXPORT ClassName::TestObjRef( BOOL bFree ) \
+void ClassName::TestObjRef( BOOL bFree ) \
{ \
TestMemberObjRef( bFree ); \
Super1::TestObjRef( bFree ); \
@@ -106,7 +106,7 @@ void __EXPORT ClassName::TestObjRef( BOOL bFree ) \
Super3::TestObjRef( bFree ); \
Super4::TestObjRef( bFree ); \
} \
-void __EXPORT ClassName::TestInvariant( BOOL bPrint ) \
+void ClassName::TestInvariant( BOOL bPrint ) \
{ \
TestMemberInvariant( bPrint ); \
Super1::TestInvariant( bPrint ); \
@@ -171,18 +171,18 @@ SotFactory * ClassName::ClassFactory() \
} \
return *ppFactory; \
} \
-void * __EXPORT ClassName::CreateInstance( SotObject ** ppObj ) \
+void * ClassName::CreateInstance( SotObject ** ppObj ) \
{ \
ClassName * p = new ClassName(); \
if( ppObj ) \
*ppObj = p; \
return p; \
} \
-const SotFactory * __EXPORT ClassName::GetSvFactory() const \
+const SotFactory * ClassName::GetSvFactory() const \
{ \
return ClassFactory(); \
} \
-void * __EXPORT ClassName::Cast( const SotFactory * pFact ) \
+void * ClassName::Cast( const SotFactory * pFact ) \
{ \
void * pRet = NULL; \
if( !pFact || pFact == ClassFactory() ) \
@@ -209,7 +209,7 @@ SotFactory * ClassName::ClassFactory() \
} \
return *ppFactory; \
} \
-void * __EXPORT ClassName::CreateInstance( SotObject ** ppObj ) \
+void * ClassName::CreateInstance( SotObject ** ppObj ) \
{ \
ClassName * p = new ClassName(); \
Super1* pSuper1 = p; \
@@ -218,11 +218,11 @@ void * __EXPORT ClassName::CreateInstance( SotObject ** ppObj ) \
*ppObj = pBasicObj; \
return p; \
} \
-const SotFactory * __EXPORT ClassName::GetSvFactory() const \
+const SotFactory * ClassName::GetSvFactory() const \
{ \
return ClassFactory(); \
} \
-void * __EXPORT ClassName::Cast( const SotFactory * pFact ) \
+void * ClassName::Cast( const SotFactory * pFact ) \
{ \
void * pRet = NULL; \
if( !pFact || pFact == ClassFactory() ) \
@@ -252,18 +252,18 @@ SotFactory * ClassName::ClassFactory() \
} \
return *ppFactory; \
} \
-void * __EXPORT ClassName::CreateInstance( SotObject ** ppObj ) \
+void * ClassName::CreateInstance( SotObject ** ppObj ) \
{ \
ClassName * p = new ClassName(); \
if( ppObj ) \
*ppObj = p; \
return p; \
} \
-const SotFactory * __EXPORT ClassName::GetSvFactory() const \
+const SotFactory * ClassName::GetSvFactory() const \
{ \
return ClassFactory(); \
} \
-void * __EXPORT ClassName::Cast( const SotFactory * pFact ) \
+void * ClassName::Cast( const SotFactory * pFact ) \
{ \
void * pRet = NULL; \
if( !pFact || pFact == ClassFactory() ) \
@@ -295,18 +295,18 @@ SotFactory * ClassName::ClassFactory() \
} \
return *pFactory; \
} \
-void * __EXPORT ClassName::CreateInstance( SotObject ** ppObj ) \
+void * ClassName::CreateInstance( SotObject ** ppObj ) \
{ \
ClassName * p = new ClassName(); \
if( ppObj ) \
*ppObj = p; \
return p; \
} \
-const SotFactory * __EXPORT ClassName::GetSvFactory() const \
+const SotFactory * ClassName::GetSvFactory() const \
{ \
return ClassFactory(); \
} \
-void * __EXPORT ClassName::Cast( const SotFactory * pFact ) \
+void * ClassName::Cast( const SotFactory * pFact ) \
{ \
void * pRet = NULL; \
if( !pFact || pFact == ClassFactory() ) \
@@ -342,18 +342,18 @@ SotFactory * ClassName::ClassFactory() \
} \
return *ppFactory; \
} \
-void * __EXPORT ClassName::CreateInstance( SotObject ** ppObj ) \
+void * ClassName::CreateInstance( SotObject ** ppObj ) \
{ \
ClassName * p = new ClassName(); \
if( ppObj ) \
*ppObj = p; \
return p; \
} \
-const SotFactory * __EXPORT ClassName::GetSvFactory() const \
+const SotFactory * ClassName::GetSvFactory() const \
{ \
return ClassFactory(); \
} \
-void * __EXPORT ClassName::Cast( const SotFactory * pFact ) \
+void * ClassName::Cast( const SotFactory * pFact ) \
{ \
void * pRet = NULL; \
if( !pFact || pFact == ClassFactory() ) \