Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
C
core
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
LibreOffice
core
Commits
12d30ef0
Kaydet (Commit)
12d30ef0
authored
Mar 26, 2014
tarafından
Stephan Bergmann
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Remove unused macros
Change-Id: Ib4838eacd9240664327292bf12c7a14a8cdfbcf1
üst
622e9d90
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
157 deletions
+0
-157
object.hxx
include/sot/object.hxx
+0
-157
No files found.
include/sot/object.hxx
Dosyayı görüntüle @
12d30ef0
...
@@ -25,18 +25,6 @@
...
@@ -25,18 +25,6 @@
#include <tools/ref.hxx>
#include <tools/ref.hxx>
#include <sot/sotdllapi.h>
#include <sot/sotdllapi.h>
#define SO2_DECL_BASIC_CLASS(ClassName) \
private: \
static SotFactory * pFactory; \
static SotFactory ** GetFactoryAdress() { return &pFactory; } \
public: \
static void * CreateInstance( SotObject ** = NULL ); \
static SotFactory * ClassFactory(); \
virtual const SotFactory * GetSvFactory() const; \
virtual void * Cast( const SotFactory * );
/**************************************************************************
**************************************************************************/
#define SO2_IMPL_BASIC_CLASS_DLL(ClassName,FactoryName,GlobalName) \
#define SO2_IMPL_BASIC_CLASS_DLL(ClassName,FactoryName,GlobalName) \
SotFactory * ClassName::ClassFactory() \
SotFactory * ClassName::ClassFactory() \
{ \
{ \
...
@@ -67,12 +55,6 @@ void * ClassName::Cast( const SotFactory * pFact ) \
...
@@ -67,12 +55,6 @@ void * ClassName::Cast( const SotFactory * pFact ) \
return pRet; \
return pRet; \
}
}
#define SO2_IMPL_BASIC_CLASS(ClassName,FactoryName,GlobalName) \
SotFactory * ClassName::pFactory = NULL; \
SO2_IMPL_BASIC_CLASS_DLL(ClassName,FactoryName,GlobalName)
/**************************************************************************
**************************************************************************/
#define SO2_IMPL_BASIC_CLASS1_DLL(ClassName,FactoryName,Super1,GlobalName)\
#define SO2_IMPL_BASIC_CLASS1_DLL(ClassName,FactoryName,Super1,GlobalName)\
SotFactory * ClassName::ClassFactory() \
SotFactory * ClassName::ClassFactory() \
{ \
{ \
...
@@ -108,145 +90,6 @@ void * ClassName::Cast( const SotFactory * pFact ) \
...
@@ -108,145 +90,6 @@ void * ClassName::Cast( const SotFactory * pFact ) \
return pRet; \
return pRet; \
}
}
#define SO2_IMPL_BASIC_CLASS1(ClassName,FactoryName,Super1,GlobalName) \
SotFactory * ClassName::pFactory = NULL; \
SO2_IMPL_BASIC_CLASS1_DLL(ClassName,FactoryName,Super1,GlobalName)
/**************************************************************************
**************************************************************************/
#define SO2_IMPL_BASIC_CLASS2_DLL(ClassName,FactoryName,Super1,Super2,GlobalName) \
SotFactory * ClassName::ClassFactory() \
{ \
SotFactory **ppFactory = GetFactoryAdress(); \
if( !*ppFactory ) \
{ \
*ppFactory = new FactoryName( GlobalName, \
OUString( #ClassName ), ClassName::CreateInstance ); \
(*ppFactory)->PutSuperClass( Super1::ClassFactory() ); \
(*ppFactory)->PutSuperClass( Super2::ClassFactory() ); \
} \
return *ppFactory; \
} \
void * ClassName::CreateInstance( SotObject ** ppObj ) \
{ \
ClassName * p = new ClassName(); \
if( ppObj ) \
*ppObj = p; \
return p; \
} \
const SotFactory * ClassName::GetSvFactory() const \
{ \
return ClassFactory(); \
} \
void * ClassName::Cast( const SotFactory * pFact ) \
{ \
void * pRet = NULL; \
if( !pFact || pFact == ClassFactory() ) \
pRet = this; \
if( !pRet ) \
pRet = Super1::Cast( pFact ); \
if( !pRet ) \
pRet = Super2::Cast( pFact ); \
return pRet; \
}
#define SO2_IMPL_BASIC_CLASS2(ClassName,FactoryName,Super1,Super2,GlobalName) \
SotFactory * ClassName::pFactory = NULL; \
SO2_IMPL_BASIC_CLASS2_DLL(ClassName,FactoryName,Super1,Super2,GlobalName)
/**************************************************************************
**************************************************************************/
#define SO2_IMPL_BASIC_CLASS3_DLL(ClassName,FactoryName,Super1,Super2,Super3,GlobalName) \
SotFactory * ClassName::ClassFactory() \
{ \
SotFactory **ppFactory = GetFactoryAdress(); \
if( !*ppFactory ) \
{ \
*ppFactory = new FactoryName( GlobalName, \
OUString( #ClassName ), ClassName::CreateInstance ); \
(*ppFactory)->PutSuperClass( Super1::ClassFactory() ); \
(*ppFactory)->PutSuperClass( Super2::ClassFactory() ); \
(*ppFactory)->PutSuperClass( Super3::ClassFactory() ); \
} \
return *pFactory; \
} \
void * ClassName::CreateInstance( SotObject ** ppObj ) \
{ \
ClassName * p = new ClassName(); \
if( ppObj ) \
*ppObj = p; \
return p; \
} \
const SotFactory * ClassName::GetSvFactory() const \
{ \
return ClassFactory(); \
} \
void * ClassName::Cast( const SotFactory * pFact ) \
{ \
void * pRet = NULL; \
if( !pFact || pFact == ClassFactory() ) \
pRet = this; \
if( !pRet ) \
pRet = Super1::Cast( pFact ); \
if( !pRet ) \
pRet = Super2::Cast( pFact ); \
if( !pRet ) \
pRet = Super3::Cast( pFact ); \
return pRet; \
}
#define SO2_IMPL_BASIC_CLASS3(ClassName,FactoryName,Super1,Super2,Super3,GlobalName) \
SotFactory * ClassName::pFactory = NULL; \
SO2_IMPL_BASIC_CLASS3_DLL(ClassName,FactoryName,Super1,Super2,Super3,GlobalName)
/**************************************************************************
**************************************************************************/
#define SO2_IMPL_BASIC_CLASS4_DLL(ClassName,FactoryName,Super1,Super2,Super3,Super4,GlobalName) \
SotFactory * ClassName::ClassFactory() \
{ \
SotFactory **ppFactory = GetFactoryAdress(); \
if( !*ppFactory ) \
{ \
*ppFactory = new SotFactory( GlobalName, \
OUString( #ClassName ), ClassName::CreateInstance ); \
(*ppFactory)->PutSuperClass( Super1::ClassFactory() ); \
(*ppFactory)->PutSuperClass( Super2::ClassFactory() ); \
(*ppFactory)->PutSuperClass( Super3::ClassFactory() ); \
(*ppFactory)->PutSuperClass( Super4::ClassFactory() ); \
} \
return *ppFactory; \
} \
void * ClassName::CreateInstance( SotObject ** ppObj ) \
{ \
ClassName * p = new ClassName(); \
if( ppObj ) \
*ppObj = p; \
return p; \
} \
const SotFactory * ClassName::GetSvFactory() const \
{ \
return ClassFactory(); \
} \
void * ClassName::Cast( const SotFactory * pFact ) \
{ \
void * pRet = NULL; \
if( !pFact || pFact == ClassFactory() ) \
pRet = this; \
if( !pRet ) \
pRet = Super1::Cast( pFact ); \
if( !pRet ) \
pRet = Super2::Cast( pFact ); \
if( !pRet ) \
pRet = Super3::Cast( pFact ); \
if( !pRet ) \
pRet = Super4::Cast( pFact ); \
return pRet; \
}
#define SO2_IMPL_BASIC_CLASS4(ClassName,FactoryName,Super1,Super2,Super3,Super4,GlobalName) \
SotFactory * ClassName::pFactory = NULL; \
SO2_IMPL_BASIC_CLASS4_DLL(ClassName,FactoryName,Super1,Super2,Super3,Super4,GlobalName)
//==================class SotObject========================================
#ifdef _MSC_VER
#ifdef _MSC_VER
#pragma warning(disable: 4250)
#pragma warning(disable: 4250)
#endif
#endif
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment