school/cs235/lab05/queue.h

16 lines
257 B
C
Raw Normal View History

2016-04-06 20:46:10 -07:00
#ifndef __QUEUE_H__
#define __QUEUE_H__
#include "linkedlist.h"
class queue {
public:
linkedlist l;
bool addToQueue(int id);
bool removeFromQueue();
int showTopOfQueue();
int showSizeOfQueue();
bool in_queue(int id);
};
#endif