Commit 634b6b7a authored by captainwong's avatar captainwong

NotifyObservers不再打印函数信息

parent eebca79d
...@@ -32,6 +32,14 @@ private:\ ...@@ -32,6 +32,14 @@ private:\
classname& operator=(const classname&) {} classname& operator=(const classname&) {}
// singleton // singleton
//class CSingletonClassReleaseHelper {
//public:
// CSingletonClassReleaseHelper() {}
// ~CSingletonClassReleaseHelper() {}
//private:
//
//};
#define DECLARE_SINGLETON(class_name) \ #define DECLARE_SINGLETON(class_name) \
private: \ private: \
class_name(); \ class_name(); \
...@@ -41,13 +49,16 @@ public: \ ...@@ -41,13 +49,16 @@ public: \
static class_name* GetInstance() { \ static class_name* GetInstance() { \
m_lock4Instance.Lock(); \ m_lock4Instance.Lock(); \
if (m_pInstance == NULL){ \ if (m_pInstance == NULL){ \
static class_name obj; \ m_pInstance = new class_name(); \
m_pInstance = &obj; \
} \ } \
m_lock4Instance.UnLock(); \ m_lock4Instance.UnLock(); \
return m_pInstance; \ return m_pInstance; \
} \
static void ReleaseObject() { \
if (m_pInstance) { delete m_pInstance; m_pInstance = NULL; } \
} }
#define IMPLEMENT_SINGLETON(class_name) \ #define IMPLEMENT_SINGLETON(class_name) \
class_name* class_name::m_pInstance = NULL; \ class_name* class_name::m_pInstance = NULL; \
CLock class_name::m_lock4Instance; CLock class_name::m_lock4Instance;
......
...@@ -48,7 +48,6 @@ void class_name::UnRegisterObserver(void* udata) \ ...@@ -48,7 +48,6 @@ void class_name::UnRegisterObserver(void* udata) \
} \ } \
void class_name::NotifyObservers(_param_type param) \ void class_name::NotifyObservers(_param_type param) \
{ \ { \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \ _lock4ObserverList.Lock(); \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \ std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \ while (iter != _observerList.end()) { \
...@@ -62,7 +61,6 @@ void class_name::NotifyObservers(_param_type param) \ ...@@ -62,7 +61,6 @@ void class_name::NotifyObservers(_param_type param) \
// place this macro in your class's destruct function. // place this macro in your class's destruct function.
#define DESTROY_OBSERVER \ #define DESTROY_OBSERVER \
{ \ { \
AUTO_LOG_FUNCTION; \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \ std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \ while (iter != _observerList.end()) { \
_callbackInfo * observer = *iter++; \ _callbackInfo * observer = *iter++; \
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment