X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=include%2Fyaz%2B%2B%2Fgduqueue.h;fp=include%2Fyaz%2B%2B%2Fgduqueue.h;h=0000000000000000000000000000000000000000;hb=0cc824e02bc2c69986bec8c9dd9ff53f07a0cd3d;hp=e05ec4596e80bfee3e30083f558fbcdb3c7e5432;hpb=76d66b222afff97cf367a3e7b8bfe045a62d0d57;p=yazpp-moved-to-github.git diff --git a/include/yaz++/gduqueue.h b/include/yaz++/gduqueue.h deleted file mode 100644 index e05ec45..0000000 --- a/include/yaz++/gduqueue.h +++ /dev/null @@ -1,43 +0,0 @@ -/* - * Copyright (c) 1998-2005, Index Data. - * See the file LICENSE for details. - * - * $Id: gduqueue.h,v 1.1 2005-10-13 09:56:38 adam Exp $ - */ - -#ifndef YAZPP_GDUQUEUE_INCLUDED -#define YAZPP_GDUQUEUE_INCLUDED - -#include - -namespace yazpp_1 { - class GDU; - class GDUQueue_List { - friend class GDUQueue; - private: - GDU *m_item; - GDUQueue_List *m_next; - }; - - class GDUQueue { - public: - GDUQueue(); - ~GDUQueue(); - void clear(); - void enqueue(GDU *gdu); - GDU *dequeue(); - int size(); - private: - GDUQueue_List *m_list; - }; -}; - -#endif -/* - * Local variables: - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * vim: shiftwidth=4 tabstop=8 expandtab - */ -