Sophie

Sophie

distrib > Mandriva > cooker > i586 > by-pkgid > 3c0d461a1e0431b77d119f4900d3ffd4 > files > 29

apachetop-debug-0.12.6-7mdv2011.0.i586.rpm

#ifndef _QUEUE_H_
#define _QUEUE_H_

class Node
{
	public:
	void *x;
	Node *next;

	Node() { next = NULL; }
};


class Queue
{
	private:
	Node *head;
	Node *tail;
	int size;

	public:
	Queue(void);
	~Queue(void);

	void push(void *r);
	int pop(void **r);
	int entries(void);
};

#endif