Commit 634b6b7a authored by captainwong's avatar captainwong

NotifyObservers不再打印函数信息

parent eebca79d
......@@ -32,6 +32,14 @@ private:\
classname& operator=(const classname&) {}
// singleton
//class CSingletonClassReleaseHelper {
//public:
// CSingletonClassReleaseHelper() {}
// ~CSingletonClassReleaseHelper() {}
//private:
//
//};
#define DECLARE_SINGLETON(class_name) \
private: \
class_name(); \
......@@ -41,13 +49,16 @@ public: \
static class_name* GetInstance() { \
m_lock4Instance.Lock(); \
if (m_pInstance == NULL){ \
static class_name obj; \
m_pInstance = &obj; \
m_pInstance = new class_name(); \
} \
m_lock4Instance.UnLock(); \
return m_pInstance; \
} \
static void ReleaseObject() { \
if (m_pInstance) { delete m_pInstance; m_pInstance = NULL; } \
}
#define IMPLEMENT_SINGLETON(class_name) \
class_name* class_name::m_pInstance = NULL; \
CLock class_name::m_lock4Instance;
......
......@@ -48,7 +48,6 @@ void class_name::UnRegisterObserver(void* udata) \
} \
void class_name::NotifyObservers(_param_type param) \
{ \
AUTO_LOG_FUNCTION; \
_lock4ObserverList.Lock(); \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \
......@@ -62,7 +61,6 @@ void class_name::NotifyObservers(_param_type param) \
// place this macro in your class's destruct function.
#define DESTROY_OBSERVER \
{ \
AUTO_LOG_FUNCTION; \
std::list<_callbackInfo *>::iterator iter = _observerList.begin(); \
while (iter != _observerList.end()) { \
_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