Queue.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00023 #ifndef _INTERFACE_BEE_UTIL_QUEUE_H
00024 #define _INTERFACE_BEE_UTIL_QUEUE_H
00025
00026 #ifdef __cplusplus
00027
00028 #include "beecrypt/c++/util/Collection.h"
00029 using beecrypt::util::Collection;
00030
00031 namespace beecrypt {
00032 namespace util {
00035 template<class E> class Queue : public virtual Collection<E>
00036 {
00037 public:
00038 virtual E* element() = 0;
00039 virtual bool offer(E*) = 0;
00040 virtual E* peek() = 0;
00041 virtual E* poll() = 0;
00042 virtual E* remove() = 0;
00043 };
00044 }
00045 }
00046
00047 #endif
00048
00049 #endif