Add GNU LGPL headers to all .c .C and .h files
[oweals/cde.git] / cde / programs / nsgmls / Owner.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: Owner.h /main/3 1996/08/13 14:30:51 mgreess $ */
24 // Copyright (c) 1994 James Clark
25 // See the file COPYING for copying permission.
26
27 #ifndef Owner_INCLUDED
28 #define Owner_INCLUDED 1
29
30 // A pointer that owns the object pointed to.
31 // T must be of class type.
32 // This is coded so that T need not yet have been defined.
33
34 #ifdef SP_NAMESPACE
35 namespace SP_NAMESPACE {
36 #endif
37
38 template<class T>
39 class Owner {
40 public:
41   Owner() : p_(0) { }
42   Owner(T *p) : p_(p) { }
43   ~Owner();
44   void operator=(T *p) {
45     if (p_) del();
46     p_ = p;
47   }
48   operator int() const { return p_ != 0; }
49   T *pointer() const { return p_; }
50   T *operator->() const { return p_; }
51   T &operator*() const { return *p_; }
52   void swap(Owner<T> &x) {
53     T *tem = p_;
54     p_ = x.p_;
55     x.p_ = tem;
56   }
57   T *extract() {
58     T *tem = p_;
59     p_ = 0;
60     return tem;
61   }
62   void clear() {
63     if (p_) {
64       del();
65       p_ = 0;
66     }
67   }
68 private:
69   Owner(const Owner<T> &) {}
70   void operator=(const Owner<T> &) {}
71   void del();
72   T *p_;
73 };
74
75 #ifdef SP_NAMESPACE
76 }
77 #endif
78
79 #endif /* not Owner_INCLUDED */
80
81 #ifdef SP_DEFINE_TEMPLATES
82 #include "Owner.C"
83 #endif