68a973e7ac47d361f72171841c22150a8e375dbe
[oweals/cde.git] / cde / programs / dtinfo / dtinfo / src / UAS / Base / UAS_Base.hh
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 // $TOG: UAS_Base.hh /main/9 1998/04/17 11:40:28 mgreess $
24 #ifndef _UAS_Base_h_
25 #define _UAS_Base_h_
26
27 # include "Exceptions.hh"
28 # include "UAS_Pointer.hh"
29
30 class UAS_Base: public Destructable {
31     public:
32         UAS_Base ();
33         virtual ~UAS_Base ();
34         int operator == (const UAS_Base &);
35 #if (defined(sparc) && defined(SC3)) || defined(__uxp__) || defined(__osf__) || defined(USL) || defined(linux)
36         /* SC++ 4.0.1 does not like these being protected  */
37 #else
38     protected:
39     template <class T> friend class UAS_Pointer;
40 #endif
41         virtual void reference ();
42         virtual void unreference ();
43     private:
44         unsigned int fReferenceCount;
45 };
46
47 #endif