]> git.mxchange.org Git - simgear.git/blob - simgear/structure/SGReferenced.hxx
Remove SVN sync code.
[simgear.git] / simgear / structure / SGReferenced.hxx
1 /* -*-c++-*-
2  *
3  * Copyright (C) 2005-2006 Mathias Froehlich
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of the GNU General Public License as
7  * published by the Free Software Foundation; either version 2 of the
8  * License, or (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
18  *
19  */
20
21 #ifndef SGReferenced_HXX
22 #define SGReferenced_HXX
23
24 #include "SGAtomic.hxx"
25
26 /// Base class for all reference counted SimGear objects
27 /// Classes derived from this one are meant to be managed with
28 /// the SGSharedPtr class.
29 ///
30 /// For more info see SGSharedPtr. For using weak references see
31 /// SGWeakReferenced.
32
33 class SGReferenced {
34 public:
35   SGReferenced(void) : _refcount(0u)
36   {}
37   /// Do not copy reference counts. Each new object has it's own counter
38   SGReferenced(const SGReferenced&) : _refcount(0u)
39   {}
40   /// Do not copy reference counts. Each object has it's own counter
41   SGReferenced& operator=(const SGReferenced&)
42   { return *this; }
43
44   static unsigned get(const SGReferenced* ref)
45   { if (ref) return ++(ref->_refcount); else return 0; }
46   static unsigned put(const SGReferenced* ref)
47   { if (ref) return --(ref->_refcount); else return 0; }
48   static unsigned count(const SGReferenced* ref)
49   { if (ref) return ref->_refcount; else return 0; }
50   static bool shared(const SGReferenced* ref)
51   { if (ref) return 1u < ref->_refcount; else return false; }
52
53 private:
54   mutable SGAtomic _refcount;
55 };
56
57 #endif