nsgmls: remove register keyword
[oweals/cde.git] / cde / programs / nsgmls / OwnerTable.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 libraries 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: OwnerTable.h /main/2 1996/08/13 10:09:13 mgreess $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef OwnerTable_INCLUDED
28 #define OwnerTable_INCLUDED 1
29
30 #include "PointerTable.h"
31
32 #ifdef SP_NAMESPACE
33 namespace SP_NAMESPACE {
34 #endif
35
36 template<class T, class K, class HF, class KF>
37 class OwnerTable : public PointerTable<T *, K, HF, KF> {
38 public:
39   OwnerTable() { }
40   ~OwnerTable();
41   void clear();
42   void swap(OwnerTable<T, K, HF, KF> &x) {
43     PointerTable<T *, K, HF, KF>::swap(x);
44   }
45 private:
46   OwnerTable(const OwnerTable<T, K, HF, KF> &) {}
47   void operator=(const OwnerTable<T, K, HF, KF> &) {}
48 };
49
50 template<class T, class K, class HF, class KF>
51 class OwnerTableIter : public PointerTableIter<T *, K, HF, KF> {
52 public:
53   OwnerTableIter(const OwnerTable<T, K, HF, KF> &table)
54     : PointerTableIter<T *, K, HF, KF>(table) { }
55 };
56
57 template<class T, class K, class HF, class KF>
58 class CopyOwnerTable : public OwnerTable<T, K, HF, KF> {
59 public:
60   CopyOwnerTable() { }
61   CopyOwnerTable(const CopyOwnerTable<T, K, HF, KF> &tab) { *this = tab; }
62   void operator=(const CopyOwnerTable<T, K, HF, KF> &tab);
63 };
64
65 #ifdef SP_NAMESPACE
66 }
67 #endif
68
69 #endif /* not OwnerTable_INCLUDED */
70
71 #ifdef SP_DEFINE_TEMPLATES
72 #include "OwnerTable.C"
73 #endif