| 300 | } |
| 301 | |
| 302 | ContextNotifyObj::ContextNotifyObj(Context* pContext, bool preNotify) { |
| 303 | if(preNotify) { |
| 304 | pContext->addNotifyObjPre(this); |
| 305 | } else { |
| 306 | pContext->addNotifyObjPost(this); |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | |
| 311 | ContextNotifyObj::~ContextNotifyObj() { |
nothing calls this directly
no test coverage detected