Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / nsgmls / OwnerTable.C
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: OwnerTable.C /main/1 1996/07/29 17:00:02 cde-hp $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef OwnerTable_DEF_INCLUDED
28 #define OwnerTable_DEF_INCLUDED 1
29
30 #ifdef SP_NAMESPACE
31 namespace SP_NAMESPACE {
32 #endif
33
34 template<class T, class K, class HF, class KF>
35 OwnerTable<T, K, HF, KF>::~OwnerTable()
36 {
37   for (size_t i = 0; i < vec_.size(); i++)
38     delete vec_[i];
39 }
40
41 template<class T, class K, class HF, class KF>
42 void OwnerTable<T, K, HF, KF>::clear()
43 {
44   for (size_t i = 0; i < vec_.size(); i++)
45     delete vec_[i];
46   PointerTable<T *, K, HF, KF>::clear();
47 }
48
49 template<class T, class K, class HF, class KF>
50 void
51 CopyOwnerTable<T, K, HF, KF>::operator=(const CopyOwnerTable<T, K, HF, KF> &t)
52 {
53   clear();
54   //PointerTable<T *, K, HF, KF>::operator=(t);
55   // FIXME This isn't exception safe.
56   for (size_t i = 0; i < vec_.size(); i++)
57     if (vec_[i])
58       vec_[i] = vec_[i]->copy();
59 }
60
61 #ifdef SP_NAMESPACE
62 }
63 #endif
64
65 #endif /* not OwnerTable_DEF_INCLUDED */