| 39 | public: |
| 40 | |
| 41 | DurabilityQueue(ACE_Allocator * allocator) |
| 42 | : ACE_Unbounded_Queue<T> (allocator) |
| 43 | {} |
| 44 | |
| 45 | DurabilityQueue(DurabilityQueue<T> const & rhs) |
| 46 | : ACE_Unbounded_Queue<T> (rhs.allocator_) |
nothing calls this directly
no test coverage detected