| 74 | void unregisterCb( CallbackId cbId ) { mCallbacks.erase( find( cbId ) ); } |
| 75 | |
| 76 | bool empty() const { return mCallbacks.empty(); } |
| 77 | |
| 78 | iterator find( CallbackId cbId ) { for( iterator it = begin(); it != end(); ++it ) if( it->first == cbId ) return it; return mCallbacks.end(); } |
| 79 | iterator begin() { return mCallbacks.begin(); } |