Merge branch 'master' of https://git.code.sf.net/p/cdesktopenv/code
[oweals/cde.git] / cde / programs / nsgmls / IList.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: IList.h /main/2 1996/08/13 10:08:48 mgreess $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef IList_INCLUDED
28 #define IList_INCLUDED 1
29
30 #include "IListBase.h"
31
32 #ifdef SP_NAMESPACE
33 namespace SP_NAMESPACE {
34 #endif
35
36 template<class T> class IListIter;
37
38 // This owns the objects that are put in it.
39
40 template<class T>
41 class IList : private IListBase {
42 public:
43   IList() { }
44   IList(T *p) : IListBase(p) { }
45   ~IList() { clear(); }
46   void append(T *p) { IListBase::append(p); }
47   void insert(T *p) { IListBase::insert(p); }
48   void remove(T *p) { IListBase::remove(p); }
49   void swap(IList<T> &list) { IListBase::swap(list); }
50   T *head() const { return (T *)IListBase::head(); }
51   T *get() { return (T *)IListBase::get(); }
52   IListBase::clear;
53   IListBase::empty;
54 friend class IListIter<T>;
55 private:
56   IList(const IList<T> &) {}
57   IList<T> &operator=(const IList<T> &) { return *this; }
58 };
59
60 #ifdef SP_NAMESPACE
61 }
62 #endif
63
64 #endif /* not IList_INCLUDED */