aboutsummaryrefslogtreecommitdiff
path: root/src/framework/Policies/CreationPolicy.h
diff options
context:
space:
mode:
authorXanadu <none@none>2010-02-05 00:31:28 +0100
committerXanadu <none@none>2010-02-05 00:31:28 +0100
commita5d1bc77abc275402240bec1380fa87f04461ba8 (patch)
treef33b3e3f10a4f0723d85b5bec4764f4518501c06 /src/framework/Policies/CreationPolicy.h
parentb0b261585f4c410736548cd536642cb104cb7023 (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.h8
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()