* Private copy constructor used only by save(). */
| 53 | * Private copy constructor used only by save(). |
| 54 | */ |
| 55 | CDQueue(const CDQueue<T, CleanUp, Allocator>& l): |
| 56 | ParentType(l), |
| 57 | d_iter(l.d_iter), |
| 58 | d_lastsave(l.d_lastsave) {} |
| 59 | |
| 60 | /** Implementation of mandatory ContextObj method save: |
| 61 | * We assume that the base class do the job inside their copy constructor. |
nothing calls this directly
no outgoing calls
no test coverage detected