Link with C++ linker
[oweals/cde.git] / cde / programs / nsgmls / ISet.h
1 /*
2  * CDE - Common Desktop Environment
3  *
4  * Copyright (c) 1993-2012, The Open Group. All rights reserved.
5  *
6  * These libraries and programs are free software; you can
7  * redistribute them and/or modify them under the terms of the GNU
8  * Lesser General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option)
10  * any later version.
11  *
12  * These libraries and programs are distributed in the hope that
13  * they will be useful, but WITHOUT ANY WARRANTY; without even the
14  * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15  * PURPOSE. See the GNU Lesser General Public License for more
16  * details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with these librararies and programs; if not, write
20  * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
21  * Floor, Boston, MA 02110-1301 USA
22  */
23 /* $XConsortium: ISet.h /main/1 1996/07/29 16:54:18 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef ISet_INCLUDED
28 #define ISet_INCLUDED
29
30
31 #include <stddef.h>
32 #include "Vector.h"
33 #include "Boolean.h"
34
35 #ifdef SP_NAMESPACE
36 namespace SP_NAMESPACE {
37 #endif
38
39 template<class T> class ISetIter;
40
41 template<class T>
42 struct ISetRange {
43   ISetRange() { }
44   ~ISetRange() { }
45   T min;
46   T max;
47 };
48   
49 template<class T>
50 class ISet {
51 public:
52   ISet();
53   ISet(const T *, size_t);
54   ~ISet();
55   Boolean contains(T) const;
56   void remove(T);
57   void add(T x) { addRange(x, x); }
58   void addRange(T, T);
59 #if 0
60   void add(const ISet<T> &);
61 #endif
62   void check();
63   void operator+=(T x) { addRange(x, x); }
64   void clear();
65   Boolean isSingleton() const {
66     return r_.size() == 1 && r_[0].min == r_[0].max;
67   }
68   Boolean isEmpty() const { return r_.size() == 0; }
69   void swap(ISet<T> &x) { r_.swap(x.r_); }
70 friend class ISetIter<T>;
71 private:
72   Vector<ISetRange<T> > r_;
73 };
74
75 #ifdef SP_NAMESPACE
76 }
77 #endif
78
79 #endif /* not ISet_INCLUDED */
80
81 #ifdef SP_DEFINE_TEMPLATES
82 #include "ISet.C"
83 #endif