diff options
author | Xanadu <none@none> | 2010-02-05 00:31:28 +0100 |
---|---|---|
committer | Xanadu <none@none> | 2010-02-05 00:31:28 +0100 |
commit | a5d1bc77abc275402240bec1380fa87f04461ba8 (patch) | |
tree | f33b3e3f10a4f0723d85b5bec4764f4518501c06 /src/framework/Policies/CreationPolicy.h | |
parent | b0b261585f4c410736548cd536642cb104cb7023 (diff) |
A great purge of obsolete macros.
--HG--
branch : trunk
Diffstat (limited to 'src/framework/Policies/CreationPolicy.h')
-rw-r--r-- | src/framework/Policies/CreationPolicy.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/framework/Policies/CreationPolicy.h b/src/framework/Policies/CreationPolicy.h index 32189d8ef44..8552ce7da52 100644 --- a/src/framework/Policies/CreationPolicy.h +++ b/src/framework/Policies/CreationPolicy.h @@ -30,7 +30,7 @@ namespace Trinity * OperatorNew policy creates an object on the heap using new. */ template <class T> - class TRINITY_DLL_DECL OperatorNew + class OperatorNew { public: static T* Create(void) { return (new T); } @@ -42,7 +42,7 @@ namespace Trinity * the first time call Create. */ template <class T> - class TRINITY_DLL_DECL LocalStaticCreation + class LocalStaticCreation { union MaxAlign { @@ -71,7 +71,7 @@ namespace Trinity * CreateUsingMalloc by pass the memory manger. */ template<class T> - class TRINITY_DLL_DECL CreateUsingMalloc + class CreateUsingMalloc { public: static T* Create() @@ -92,7 +92,7 @@ namespace Trinity * CreateOnCallBack creates the object base on the call back. */ template<class T, class CALL_BACK> - class TRINITY_DLL_DECL CreateOnCallBack + class CreateOnCallBack { public: static T* Create() |