mirror of
https://github.com/tiennm99/Nhut.git
synced 2026-06-08 20:13:17 +00:00
18 lines
195 B
C++
18 lines
195 B
C++
#ifndef QUEUE_H
|
|
#define QUEUE_H
|
|
|
|
#include "List.h"
|
|
|
|
class Queue
|
|
{
|
|
private:
|
|
List *queue;
|
|
|
|
public:
|
|
Queue();
|
|
void enQueue(int);
|
|
int deQueue();
|
|
~Queue();
|
|
};
|
|
|
|
#endif // QUEUE_H
|