| 117 | |
| 118 | |
| 119 | void Context::addNotifyObjPre(ContextNotifyObj* pCNO) { |
| 120 | // Insert pCNO at *front* of list |
| 121 | if(d_pCNOpre != NULL) |
| 122 | d_pCNOpre->prev() = &(pCNO->next()); |
| 123 | pCNO->next() = d_pCNOpre; |
| 124 | pCNO->prev() = &d_pCNOpre; |
| 125 | d_pCNOpre = pCNO; |
| 126 | } |
| 127 | |
| 128 | |
| 129 | void Context::addNotifyObjPost(ContextNotifyObj* pCNO) { |
no test coverage detected