Orxonox  0.0.5 Codename: Arcturus
ticpprc.h
Go to the documentation of this file.
1 /*
2 http://code.google.com/p/ticpp/
3 Copyright (c) 2006 Ryan Pusztai, Ryan Mulder
4 
5 Permission is hereby granted, free of charge, to any person obtaining a copy of
6 this software and associated documentation files (the "Software"), to deal in
7 the Software without restriction, including without limitation the rights to
8 use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9 the Software, and to permit persons to whom the Software is furnished to do so,
10 subject to the following conditions:
11 
12 The above copyright notice and this permission notice shall be included in all
13 copies or substantial portions of the Software.
14 
15 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17 FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18 COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19 IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20 CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
21 */
22 
23 #ifdef TIXML_USE_TICPP
24 
25 #ifndef TICPPRC_INCLUDED
26 #define TICPPRC_INCLUDED
27 
28 #include <vector>
29 
30 // Forward declare ticpp::Node, so it can be made a friend of TiCppRC
31 namespace ticpp
32 {
33  class Base;
34 }
35 
36 // Forward declare TiCppRCImp so TiCppRC can hold a pointer to it
37 class TiCppRCImp;
38 
42 class TiCppRC
43 {
44  // Allow ticpp::Node to directly modify reference count
45  friend class ticpp::Base;
46 
47 private:
48 
49  TiCppRCImp* m_tiRC;
51 public:
52 
57  TiCppRC();
58 
64  virtual ~TiCppRC();
65 
66  std::vector< ticpp::Base* > m_spawnedWrappers;
71  void DeleteSpawnedWrappers();
72 };
73 
74 class TiCppRCImp
75 {
76 private:
77 
78  int m_count;
80  TiCppRC* m_tiCppRC;
82 public:
83 
87  TiCppRCImp( TiCppRC* tiCppRC );
88 
92  void Nullify();
93 
97  void IncRef();
98 
102  void DecRef();
103 
107  void InitRef();
108 
112  TiCppRC* Get();
113 
117  bool IsNull();
118 };
119 
120 #endif // TICPP_INCLUDED
121 
122 #endif // TIXML_USE_TICPP
PolymorphicMatcher< internal::IsNullMatcher > IsNull()
Definition: gmock-matchers.h:2637
Definition: CorePrereqs.h:409