Cyclone ISO C++ API Reference Guide
Reference.hpp
Go to the documentation of this file.
1 #ifndef OMG_DDS_CORE_REFERENCE_HPP_
2 #define OMG_DDS_CORE_REFERENCE_HPP_
3 
4 /* Copyright 2010, Object Management Group, Inc.
5  * Copyright 2010, PrismTech, Inc.
6  * Copyright 2010, Real-Time Innovations, Inc.
7  * All rights reserved.
8  *
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  *
13  * http://www.apache.org/licenses/LICENSE-2.0
14  *
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 
22 #include <dds/core/types.hpp>
23 #include <dds/core/refmacros.hpp>
24 #include <dds/core/Exception.hpp>
25 
26 
27 namespace dds
28 {
29 namespace core
30 {
31 
32 
93 template <typename DELEGATE>
94 class Reference
95 {
96 public:
97  DECLARE_TYPE_TRAITS(DELEGATE)
98 
99 
104  explicit Reference(dds::core::null_type&);
105 
106 public:
112  explicit Reference(const Reference& ref);
113 
119  template <typename D>
120  explicit Reference(const Reference<D>& ref);
121 
132  explicit Reference(DELEGATE_T* p);
133  explicit Reference(const DELEGATE_REF_T& p);
136 public:
145  ~Reference();
146 
147 public:
154  operator DELEGATE_REF_T() const;
166  template <typename R>
167  bool operator==(const R& ref) const;
168 
179  template <typename R>
180  bool operator!=(const R& ref) const;
181 
190  template <typename D>
191  Reference& operator=(const Reference<D>& that);
192 
194  template <typename R>
195  Reference& operator=(const R& rhs);
196 
206  Reference&
207  operator=(const null_type);
208 
216  bool is_nil() const;
217 
231  bool
232  operator==(const null_type) const;
233 
247  bool operator!=(const null_type nil) const;
248 
249 private:
250  // -- disallow dynamic allocation for reference types
251  void* operator new(size_t);
252 
253 
254 
255 public:
262  const DELEGATE_REF_T& delegate() const;
263  DELEGATE_REF_T& delegate();
283  DELEGATE* operator->();
284 
286  const DELEGATE* operator->() const;
287 
294  operator DELEGATE_REF_T& ();
295  operator const DELEGATE_REF_T& () const;
298 protected:
299  Reference() {}
300 
301  void set_ref(DELEGATE_T* p);
302 
303 protected:
304  DELEGATE_REF_T impl_;
305 };
306 
307 
308 }
309 } /* namespace dds / namespace core */
310 
311 
325 template <class D> bool operator == (dds::core::null_type, const dds::core::Reference<D>& r);
326 
340 template <class D> bool operator != (dds::core::null_type, const dds::core::Reference<D>& r);
341 
342 #endif /* OMG_DDS_CORE_REFERENCE_HPP_ */
dds::core::Reference::operator->
DELEGATE * operator->()
types.hpp
refmacros.hpp
operator!=
bool operator!=(dds::core::null_type, const dds::core::Reference< D > &r)
dds::core::null_type
This class is used to create dds::core::null objects.
Definition: types.hpp:49
dds::core::Reference
Base class for reference-counted objects.
Definition: Reference.hpp:94
operator==
bool operator==(dds::core::null_type, const dds::core::Reference< D > &r)
dds
Definition: array.hpp:30
DECLARE_TYPE_TRAITS
#define DECLARE_TYPE_TRAITS(TYPE)
Definition: refmacros.hpp:29
dds::core::Reference::operator==
bool operator==(const R &ref) const
Exception.hpp
dds::core::Reference::is_nil
bool is_nil() const
dds::core::Reference::operator!=
bool operator!=(const R &ref) const
dds::core::Reference::~Reference
~Reference()
dds::core::Reference::operator=
Reference & operator=(const Reference< D > &that)