From d6583bb2a13f329cf0332ef2570eb8bb8fc0e39c Mon Sep 17 00:00:00 2001 From: Theo de Raadt Date: Wed, 18 Oct 1995 08:53:40 +0000 Subject: initial import of NetBSD tree --- gnu/lib/libg++/g++-include/gen/Bag.hP | 87 +++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 gnu/lib/libg++/g++-include/gen/Bag.hP (limited to 'gnu/lib/libg++/g++-include/gen/Bag.hP') diff --git a/gnu/lib/libg++/g++-include/gen/Bag.hP b/gnu/lib/libg++/g++-include/gen/Bag.hP new file mode 100644 index 00000000000..af87a8ba534 --- /dev/null +++ b/gnu/lib/libg++/g++-include/gen/Bag.hP @@ -0,0 +1,87 @@ +// This may look like C code, but it is really -*- C++ -*- +/* +Copyright (C) 1988 Free Software Foundation + written by Doug Lea (dl@rocky.oswego.edu) + +This file is part of GNU CC. + +GNU CC is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY. No author or distributor +accepts responsibility to anyone for the consequences of using it +or for whether it serves any particular purpose or works at all, +unless he says so in writing. Refer to the GNU CC General Public +License for full details. + +Everyone is granted permission to copy, modify and redistribute +GNU CC, but only under the conditions described in the +GNU CC General Public License. A copy of this license is +supposed to have been given to you along with GNU CC so you +can know your rights and responsibilities. It should be in a +file named COPYING. Among other things, the copyright notice +and this notice must be preserved on all copies. +*/ + + +#ifndef _Bag_h +#ifdef __GNUG__ +#pragma once +#pragma interface +#endif +#define _Bag_h 1 + +#include +#include ".defs.h" + +class Bag +{ +protected: + int count; + +public: + virtual ~Bag(); + + int length(); // current number of items + int empty(); + + virtual Pix add( item) = 0; // add item; return Pix + + virtual void del( item) = 0; // delete 1 occurrence of item + virtual void remove( item); // delete all occurrences + virtual void clear(); // delete all items + + virtual int contains( item); // is item in Bag? + virtual int nof( item); // how many in Bag? + + virtual Pix first() = 0; // Pix of first item or 0 + virtual void next(Pix& i) = 0; // advance to next or 0 + + virtual & operator () (Pix i) = 0; // access item at i + + virtual Pix seek( item, Pix from=0); // Pix of next occurrence + virtual int owns(Pix i); // is i a valid Pix ? + + void error(const char* msg); + virtual int OK() = 0; // rep invariant +}; + +#if defined(__OPTIMIZE__) || defined(USE_LIBGXX_INLINES) + +inline Bag::~Bag() {} + +inline int Bag::length() +{ + return count; +} + +inline int Bag::empty() +{ + return count == 0; +} + +inline int Bag::contains( item) +{ + return seek(item) != 0; +} + +#endif +#endif -- cgit v1.2.3