40 Queue node = this->first;
42 while (NULL != node) {
43 Queue next = node->next;
CREATE_CLASS(Queue, NULL, IFACE(Class))
static void queueDtor(void *_this)
static int queueCtor(void *_this, va_list *params)
INIT_IFACE(Class, queueCtor, queueDtor, NULL)