| 127 | |
| 128 | |
| 129 | void Context::addNotifyObjPost(ContextNotifyObj* pCNO) { |
| 130 | // Insert pCNO at *front* of list |
| 131 | if(d_pCNOpost != NULL) |
| 132 | d_pCNOpost->prev() = &(pCNO->next()); |
| 133 | pCNO->next() = d_pCNOpost; |
| 134 | pCNO->prev() = &d_pCNOpost; |
| 135 | d_pCNOpost = pCNO; |
| 136 | } |
| 137 | |
| 138 | void ContextObj::update() |
| 139 | { |
no test coverage detected