Commit 272af1a8 authored by captainwong's avatar captainwong

update DECLARE_OBSERVER

parent 17d4bb12
...@@ -2,17 +2,16 @@ ...@@ -2,17 +2,16 @@
// place this macro in your class's header file, in your class's definition // place this macro in your class's header file, in your class's definition
#define DECLARE_OBSERVER(callback, param_type) \ #define DECLARE_OBSERVER(callback, param_type) \
protected: \ protected: \
typedef callback _callback; \
typedef param_type _param_type; \
typedef struct callback##Info { \ typedef struct callback##Info { \
DECLARE_UNCOPYABLE(callback##Info) \ DECLARE_UNCOPYABLE(callback##Info) \
public: \ public: \
callback##Info() : _udata(NULL), _on_result(NULL) {} \ callback##Info() : _udata(NULL), _on_result(NULL) {} \
callback##Info(void* udata, callback on_result) : _udata(udata), _on_result(on_result) {} \ callback##Info(void* udata, _callback on_result) : _udata(udata), _on_result(on_result) {} \
void* _udata; \ void* _udata; \
callback _on_result; \ _callback _on_result; \
}callback##Info; \ }_callbackInfo; \
typedef callback##Info _callbackInfo; \
typedef callback _callback; \
typedef param_type _param_type; \
std::list<_callbackInfo *> _observerList; \ std::list<_callbackInfo *> _observerList; \
CLock _lock4ObserverList; \ CLock _lock4ObserverList; \
public: \ public: \
......
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