Searched refs:IQueueBase (Results 1 – 2 of 2) sorted by relevance
15 class IQueueBase {17 IQueueBase() : last_(0) { } in IQueueBase() function18 ~IQueueBase() { } in ~IQueueBase()36 void swap(IQueueBase &with) { in swap()47 class IQueue : private IQueueBase {52 T *get() { return (T *)IQueueBase::get(); } in get()53 void append(T *p) { IQueueBase::append(p); } in append()54 Boolean empty() const { return IQueueBase::empty(); } in empty()55 void swap(IQueue<T> &to) { IQueueBase::swap(to); } in swap()
22 friend class IQueueBase; variable