home *** CD-ROM | disk | FTP | other *** search
- #ifndef __RWGQUEUE_H__
- #define __RWGQUEUE_H__
- pragma push_align_members(64);
-
- /*
- * Declarations for General Queues, implemented as a singly-linked list.
- *
- * $Header: E:/vcs/rw/gqueue.h_v 1.3 18 Feb 1992 19:23:00 KEFFER $
- *
- ****************************************************************************
- *
- * Rogue Wave
- * P.O. Box 2328
- * Corvallis, OR 97339
- * Voice: (503) 754-3010 FAX: (503) 757-6650
- *
- * Copyright (C) 1989, 1990, 1991. This software is subject to copyright
- * protection under the laws of the United States and other countries.
- *
- ***************************************************************************
- *
- * $Log: E:/vcs/rw/gqueue.h_v $
- *
- * Rev 1.3 18 Feb 1992 19:23:00 KEFFER
- * Now includes "rw/generic.h".
- * Class tag is now RWExport instead of huge.
- *
- * Rev 1.2 28 Oct 1991 09:08:14 keffer
- * Changed inclusions to <rw/xxx.h>
- *
- * Rev 1.1 09 Oct 1991 18:34:32 keffer
- * Ported to Zortech V3.0
- *
- * Rev 1.0 28 Jul 1991 08:11:20 keffer
- * Tools.h++ V4.0.5 PVCS baseline version
- *
- */
-
- #include "rw/slist.h"
- #include "rw/generic.h"
-
- #define GQueue(type) name2(type,GQueue)
-
- #define GQueuedeclare(type) \
- class RWExport GQueue(type) : private RWSlist { \
- public: \
- GQueue(type)() { } \
- GQueue(type)(type* a) : RWSlist(a) { } \
- GQueue(type)(const GQueue(type)& q) : RWSlist(q) { } \
- void operator=(const GQueue(type)& q) { RWSlist::operator=(q);} \
- \
- type* append(type* a) {return (type*)RWSlist::append(a);} \
- void clear() {RWSlist::clear();} \
- RWBoolean contains(RWBoolean (*t)(const type*, const void*), const void* a) const \
- {return RWSlist::contains((RWtestGeneric)t, a);} \
- RWBoolean containsReference(const type* a) const \
- {return RWSlist::containsReference(a);} \
- unsigned entries() const {return RWSlist::entries();} \
- type* first() const {return (type*)RWSlist::first(); } \
- type* get() {return (type*)RWSlist::get(); } \
- type* insert(type* a) {return (type*)RWSlist::append(a);} \
- RWBoolean isEmpty() const {return RWSlist::isEmpty();} \
- type* last() const {return (type*)RWSlist::last(); } \
- unsigned occurrencesOf(RWBoolean (*t)(const type*, const void*), const void* a) const\
- {return RWSlist::occurrencesOf((RWtestGeneric)t, a);} \
- unsigned occurrencesOfReference(const type* a) const \
- {return RWSlist::occurrencesOfReference(a);} \
- };
-
- pragma pop_align_members();
- #endif /* __RWGQUEUE_H__ */
-