shared_count.hpp
Go to the documentation of this file.
1 #include "sick_scan/sick_scan_base.h" /* Base definitions included in all header files, added by add_sick_scan_base_header.py. Do not edit this line. */
2 #ifndef BOOST_SMART_PTR_DETAIL_SHARED_COUNT_HPP_INCLUDED
3 #define BOOST_SMART_PTR_DETAIL_SHARED_COUNT_HPP_INCLUDED
4 
5 // MS compatible compilers support #pragma once
6 
7 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
8 # pragma once
9 #endif
10 
11 //
12 // detail/shared_count.hpp
13 //
14 // Copyright (c) 2001, 2002, 2003 Peter Dimov and Multi Media Ltd.
15 // Copyright 2004-2005 Peter Dimov
16 //
17 // Distributed under the Boost Software License, Version 1.0. (See
18 // accompanying file LICENSE_1_0.txt or copy at
19 // http://www.boost.org/LICENSE_1_0.txt)
20 //
21 
22 #ifdef __BORLANDC__
23 # pragma warn -8027 // Functions containing try are not expanded inline
24 #endif
25 
26 # define BOOST_SP_DISABLE_DEPRECATED
29 #include <functional> // std::less
30 
31 #ifdef BOOST_NO_EXCEPTIONS
32 # include <new> // std::bad_alloc
33 #endif
34 
36 
37 #if !defined _MSC_VER && defined( BOOST_SP_DISABLE_DEPRECATED )
38 #pragma GCC diagnostic push
39 #pragma GCC diagnostic ignored "-Wdeprecated-declarations"
40 #endif
41 
42 namespace boost
43 {
44 
45 namespace movelib
46 {
47 
48 template< class T, class D > class unique_ptr;
49 
50 } // namespace movelib
51 
52 namespace detail
53 {
54 
55 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
56 
57 int const shared_count_id = 0x2C35F101;
58 int const weak_count_id = 0x298C38A4;
59 
60 #endif
61 
62 struct sp_nothrow_tag {};
63 
64 template< class D > struct sp_inplace_tag
65 {
66 };
67 
68 template< class T > class sp_reference_wrapper
69 {
70 public:
71 
72  explicit sp_reference_wrapper( T & t): t_(std::addressof(t)) // t_( boost::addressof( t ) )
73  {
74  }
75 
76  template< class Y > void operator()( Y * p ) const
77  {
78  (*t_)( p );
79  }
80 
81 private:
82 
83  T * t_;
84 };
85 
86 template< class D > struct sp_convert_reference
87 {
88  typedef D type;
89 };
90 
91 template< class D > struct sp_convert_reference< D& >
92 {
94 };
95 
96 class weak_count;
97 
99 {
100 private:
101 
103 
104 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
105  int id_;
106 #endif
107 
108  friend class weak_count;
109 
110 public:
111 
113 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
114  , id_(shared_count_id)
115 #endif
116  {
117  }
118 
119  BOOST_CONSTEXPR explicit shared_count( sp_counted_base * pi ): pi_( pi ) // nothrow
120 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
121  , id_(shared_count_id)
122 #endif
123  {
124  }
125 
126  template<class Y> explicit shared_count( Y * p ): pi_( 0 )
127 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
128  , id_(shared_count_id)
129 #endif
130  {
131 #ifndef BOOST_NO_EXCEPTIONS
132 
133  try
134  {
135  pi_ = new sp_counted_impl_p<Y>( p );
136  }
137  catch(...)
138  {
140  throw;
141  }
142 
143 #else
144 
145  pi_ = new sp_counted_impl_p<Y>( p );
146 
147  if( pi_ == 0 )
148  {
150  boost::throw_exception( std::bad_alloc() );
151  }
152 
153 #endif
154  }
155 
156  template<class P, class D> shared_count( P p, D d ): pi_(0)
157 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
158  , id_(shared_count_id)
159 #endif
160  {
161 #ifndef BOOST_NO_EXCEPTIONS
162 
163  try
164  {
165  pi_ = new sp_counted_impl_pd<P, D>(p, d);
166  }
167  catch(...)
168  {
169  d(p); // delete p
170  throw;
171  }
172 
173 #else
174 
175  pi_ = new sp_counted_impl_pd<P, D>(p, d);
176 
177  if(pi_ == 0)
178  {
179  d(p); // delete p
180  boost::throw_exception(std::bad_alloc());
181  }
182 
183 #endif
184  }
185 
186 #if !defined( BOOST_NO_FUNCTION_TEMPLATE_ORDERING )
187 
188  template< class P, class D > shared_count( P p, sp_inplace_tag<D> ): pi_( 0 )
189 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
190  , id_(shared_count_id)
191 #endif
192  {
193 #ifndef BOOST_NO_EXCEPTIONS
194 
195  try
196  {
197  pi_ = new sp_counted_impl_pd< P, D >( p );
198  }
199  catch( ... )
200  {
201  D::operator_fn( p ); // delete p
202  throw;
203  }
204 
205 #else
206 
207  pi_ = new sp_counted_impl_pd< P, D >( p );
208 
209  if( pi_ == 0 )
210  {
211  D::operator_fn( p ); // delete p
212  boost::throw_exception( std::bad_alloc() );
213  }
214 
215 #endif // #ifndef BOOST_NO_EXCEPTIONS
216  }
217 
218 #endif // !defined( BOOST_NO_FUNCTION_TEMPLATE_ORDERING )
219 
220  template<class P, class D, class A> shared_count( P p, D d, A a ): pi_( 0 )
221 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
222  , id_(shared_count_id)
223 #endif
224  {
225  typedef sp_counted_impl_pda<P, D, A> impl_type;
226 
227 #if !defined( BOOST_NO_CXX11_ALLOCATOR )
228 
229  typedef typename std::allocator_traits<A>::template rebind_alloc< impl_type > A2;
230 
231 #else
232 
233  typedef typename A::template rebind< impl_type >::other A2;
234 
235 #endif
236 
237  A2 a2( a );
238 
239 #ifndef BOOST_NO_EXCEPTIONS
240 
241  try
242  {
243  pi_ = a2.allocate( 1 );
244  ::new( static_cast< void* >( pi_ ) ) impl_type( p, d, a );
245  }
246  catch(...)
247  {
248  d( p );
249 
250  if( pi_ != 0 )
251  {
252  a2.deallocate( static_cast< impl_type* >( pi_ ), 1 );
253  }
254 
255  throw;
256  }
257 
258 #else
259 
260  pi_ = a2.allocate( 1 );
261 
262  if( pi_ != 0 )
263  {
264  ::new( static_cast< void* >( pi_ ) ) impl_type( p, d, a );
265  }
266  else
267  {
268  d( p );
269  boost::throw_exception( std::bad_alloc() );
270  }
271 
272 #endif
273  }
274 
275 #if !defined( BOOST_NO_FUNCTION_TEMPLATE_ORDERING )
276 
277  template< class P, class D, class A > shared_count( P p, sp_inplace_tag< D >, A a ): pi_( 0 )
278 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
279  , id_(shared_count_id)
280 #endif
281  {
282  typedef sp_counted_impl_pda< P, D, A > impl_type;
283 
284 #if !defined( BOOST_NO_CXX11_ALLOCATOR )
285 
286  typedef typename std::allocator_traits<A>::template rebind_alloc< impl_type > A2;
287 
288 #else
289 
290  typedef typename A::template rebind< impl_type >::other A2;
291 
292 #endif
293 
294  A2 a2( a );
295 
296 #ifndef BOOST_NO_EXCEPTIONS
297 
298  try
299  {
300  pi_ = a2.allocate( 1 );
301  ::new( static_cast< void* >( pi_ ) ) impl_type( p, a );
302  }
303  catch(...)
304  {
305  D::operator_fn( p );
306 
307  if( pi_ != 0 )
308  {
309  a2.deallocate( static_cast< impl_type* >( pi_ ), 1 );
310  }
311 
312  throw;
313  }
314 
315 #else
316 
317  pi_ = a2.allocate( 1 );
318 
319  if( pi_ != 0 )
320  {
321  ::new( static_cast< void* >( pi_ ) ) impl_type( p, a );
322  }
323  else
324  {
325  D::operator_fn( p );
326  boost::throw_exception( std::bad_alloc() );
327  }
328 
329 #endif // #ifndef BOOST_NO_EXCEPTIONS
330  }
331 
332 #endif // !defined( BOOST_NO_FUNCTION_TEMPLATE_ORDERING )
333 
334 #ifndef BOOST_NO_AUTO_PTR
335 
336  // auto_ptr<Y> is special cased to provide the strong guarantee
337 
338  template<class Y>
339  explicit shared_count( std::auto_ptr<Y> & r ): pi_( new sp_counted_impl_p<Y>( r.get() ) )
340 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
341  , id_(shared_count_id)
342 #endif
343  {
344 #ifdef BOOST_NO_EXCEPTIONS
345 
346  if( pi_ == 0 )
347  {
348  boost::throw_exception(std::bad_alloc());
349  }
350 
351 #endif
352 
353  r.release();
354  }
355 
356 #endif
357 
358 #if !defined( BOOST_NO_CXX11_SMART_PTR )
359 
360  template<class Y, class D>
361  explicit shared_count( std::unique_ptr<Y, D> & r ): pi_( 0 )
362 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
363  , id_(shared_count_id)
364 #endif
365  {
366  typedef typename sp_convert_reference<D>::type D2;
367 
368  D2 d2( r.get_deleter() );
370 
371 #ifdef BOOST_NO_EXCEPTIONS
372 
373  if( pi_ == 0 )
374  {
375  boost::throw_exception( std::bad_alloc() );
376  }
377 
378 #endif
379 
380  r.release();
381  }
382 
383 #endif
384 
385  template<class Y, class D>
387 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
388  , id_(shared_count_id)
389 #endif
390  {
391  typedef typename sp_convert_reference<D>::type D2;
392 
393  D2 d2( r.get_deleter() );
395 
396 #ifdef BOOST_NO_EXCEPTIONS
397 
398  if( pi_ == 0 )
399  {
400  boost::throw_exception( std::bad_alloc() );
401  }
402 
403 #endif
404 
405  r.release();
406  }
407 
408  ~shared_count() // nothrow
409  {
410  if( pi_ != 0 ) pi_->release();
411 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
412  id_ = 0;
413 #endif
414  }
415 
416  shared_count(shared_count const & r): pi_(r.pi_) // nothrow
417 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
418  , id_(shared_count_id)
419 #endif
420  {
421  if( pi_ != 0 ) pi_->add_ref_copy();
422  }
423 
424 #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
425 
426  shared_count(shared_count && r): pi_(r.pi_) // nothrow
427 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
428  , id_(shared_count_id)
429 #endif
430  {
431  r.pi_ = 0;
432  }
433 
434 #endif
435 
436  explicit shared_count(weak_count const & r); // throws bad_weak_ptr when r.use_count() == 0
437  shared_count( weak_count const & r, sp_nothrow_tag ); // constructs an empty *this when r.use_count() == 0
438 
439  shared_count & operator= (shared_count const & r) // nothrow
440  {
441  sp_counted_base * tmp = r.pi_;
442 
443  if( tmp != pi_ )
444  {
445  if( tmp != 0 ) tmp->add_ref_copy();
446  if( pi_ != 0 ) pi_->release();
447  pi_ = tmp;
448  }
449 
450  return *this;
451  }
452 
453  void swap(shared_count & r) // nothrow
454  {
455  sp_counted_base * tmp = r.pi_;
456  r.pi_ = pi_;
457  pi_ = tmp;
458  }
459 
460  long use_count() const // nothrow
461  {
462  return pi_ != 0? pi_->use_count(): 0;
463  }
464 
465  bool unique() const // nothrow
466  {
467  return use_count() == 1;
468  }
469 
470  bool empty() const // nothrow
471  {
472  return pi_ == 0;
473  }
474 
475  friend inline bool operator==(shared_count const & a, shared_count const & b)
476  {
477  return a.pi_ == b.pi_;
478  }
479 
480  friend inline bool operator<(shared_count const & a, shared_count const & b)
481  {
482  return std::less<sp_counted_base *>()( a.pi_, b.pi_ );
483  }
484 
485  void * get_deleter( sp_typeinfo const & ti ) const
486  {
487  return pi_? pi_->get_deleter( ti ): 0;
488  }
489 
490  void * get_local_deleter( sp_typeinfo const & ti ) const
491  {
492  return pi_? pi_->get_local_deleter( ti ): 0;
493  }
494 
495  void * get_untyped_deleter() const
496  {
497  return pi_? pi_->get_untyped_deleter(): 0;
498  }
499 };
500 
501 
503 {
504 private:
505 
507 
508 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
509  int id_;
510 #endif
511 
512  friend class shared_count;
513 
514 public:
515 
516  BOOST_CONSTEXPR weak_count(): pi_(0) // nothrow
517 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
518  , id_(weak_count_id)
519 #endif
520  {
521  }
522 
523  weak_count(shared_count const & r): pi_(r.pi_) // nothrow
524 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
525  , id_(weak_count_id)
526 #endif
527  {
528  if(pi_ != 0) pi_->weak_add_ref();
529  }
530 
531  weak_count(weak_count const & r): pi_(r.pi_) // nothrow
532 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
533  , id_(weak_count_id)
534 #endif
535  {
536  if(pi_ != 0) pi_->weak_add_ref();
537  }
538 
539 // Move support
540 
541 #if !defined( BOOST_NO_CXX11_RVALUE_REFERENCES )
542 
543  weak_count(weak_count && r): pi_(r.pi_) // nothrow
544 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
545  , id_(weak_count_id)
546 #endif
547  {
548  r.pi_ = 0;
549  }
550 
551 #endif
552 
553  ~weak_count() // nothrow
554  {
555  if(pi_ != 0) pi_->weak_release();
556 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
557  id_ = 0;
558 #endif
559  }
560 
561  weak_count & operator= (shared_count const & r) // nothrow
562  {
563  sp_counted_base * tmp = r.pi_;
564 
565  if( tmp != pi_ )
566  {
567  if(tmp != 0) tmp->weak_add_ref();
568  if(pi_ != 0) pi_->weak_release();
569  pi_ = tmp;
570  }
571 
572  return *this;
573  }
574 
575  weak_count & operator= (weak_count const & r) // nothrow
576  {
577  sp_counted_base * tmp = r.pi_;
578 
579  if( tmp != pi_ )
580  {
581  if(tmp != 0) tmp->weak_add_ref();
582  if(pi_ != 0) pi_->weak_release();
583  pi_ = tmp;
584  }
585 
586  return *this;
587  }
588 
589  void swap(weak_count & r) // nothrow
590  {
591  sp_counted_base * tmp = r.pi_;
592  r.pi_ = pi_;
593  pi_ = tmp;
594  }
595 
596  long use_count() const // nothrow
597  {
598  return pi_ != 0? pi_->use_count(): 0;
599  }
600 
601  bool empty() const // nothrow
602  {
603  return pi_ == 0;
604  }
605 
606  friend inline bool operator==(weak_count const & a, weak_count const & b)
607  {
608  return a.pi_ == b.pi_;
609  }
610 
611  friend inline bool operator<(weak_count const & a, weak_count const & b)
612  {
613  return std::less<sp_counted_base *>()(a.pi_, b.pi_);
614  }
615 };
616 
617 inline shared_count::shared_count( weak_count const & r ): pi_( r.pi_ )
618 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
619  , id_(shared_count_id)
620 #endif
621 {
622  if( pi_ == 0 || !pi_->add_ref_lock() )
623  {
624  throw std::bad_weak_ptr(); // boost::throw_exception( boost::bad_weak_ptr() );
625  }
626 }
627 
628 inline shared_count::shared_count( weak_count const & r, sp_nothrow_tag ): pi_( r.pi_ )
629 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
630  , id_(shared_count_id)
631 #endif
632 {
633  if( pi_ != 0 && !pi_->add_ref_lock() )
634  {
635  pi_ = 0;
636  }
637 }
638 
639 } // namespace detail
640 
641 } // namespace boost
642 
643 #if !defined _MSC_VER && defined( BOOST_SP_DISABLE_DEPRECATED )
644 #pragma GCC diagnostic pop
645 #endif
646 
647 #ifdef __BORLANDC__
648 # pragma warn .8027 // Functions containing try are not expanded inline
649 #endif
650 
651 #endif // #ifndef BOOST_SMART_PTR_DETAIL_SHARED_COUNT_HPP_INCLUDED
boost::detail::weak_count::~weak_count
~weak_count()
Definition: shared_count.hpp:553
boost::detail::sp_counted_impl_p
Definition: sp_counted_impl.hpp:61
boost::detail::shared_count::shared_count
shared_count(shared_count const &r)
Definition: shared_count.hpp:416
boost::detail::sp_reference_wrapper::operator()
void operator()(Y *p) const
Definition: shared_count.hpp:76
boost::detail::sp_reference_wrapper::t_
T * t_
Definition: shared_count.hpp:83
boost::detail::shared_count::shared_count
shared_count(std::auto_ptr< Y > &r)
Definition: shared_count.hpp:339
boost::detail::shared_count::shared_count
shared_count(Y *p)
Definition: shared_count.hpp:126
const
#define const
Definition: getopt.c:38
roswrap::param::get
bool get(const std::string &key, std::string &s)
Get a string value from the parameter server.
Definition: param_modi.cpp:414
boost::detail::shared_count::use_count
long use_count() const
Definition: shared_count.hpp:460
boost::detail::shared_count
Definition: shared_count.hpp:98
boost::detail::weak_count::weak_count
BOOST_CONSTEXPR weak_count()
Definition: shared_count.hpp:516
boost::detail::shared_count::operator=
shared_count & operator=(shared_count const &r)
Definition: shared_count.hpp:439
boost::detail::sp_counted_base::get_untyped_deleter
virtual void * get_untyped_deleter()=0
boost::detail::shared_count::shared_count
shared_count(P p, D d, A a)
Definition: shared_count.hpp:220
boost
boost::detail::shared_count::~shared_count
~shared_count()
Definition: shared_count.hpp:408
boost::detail::sp_counted_base
Definition: sp_counted_base_std_atomic.hpp:64
boost::detail::sp_counted_base::add_ref_copy
void add_ref_copy()
Definition: sp_counted_base_std_atomic.hpp:100
sp_typeinfo
std::type_info sp_typeinfo
Definition: sp_counted_base_std_atomic.hpp:19
boost::detail::shared_count::get_untyped_deleter
void * get_untyped_deleter() const
Definition: shared_count.hpp:495
boost::detail::weak_count::operator<
friend bool operator<(weak_count const &a, weak_count const &b)
Definition: shared_count.hpp:611
sp_counted_base.hpp
boost::detail::shared_count::empty
bool empty() const
Definition: shared_count.hpp:470
boost::detail::sp_counted_base::weak_release
void weak_release()
Definition: sp_counted_base_std_atomic.hpp:124
boost::detail::sp_counted_base::add_ref_lock
bool add_ref_lock()
Definition: sp_counted_base_std_atomic.hpp:105
boost::detail::sp_convert_reference< D & >::type
sp_reference_wrapper< D > type
Definition: shared_count.hpp:93
boost::detail::shared_count::unique
bool unique() const
Definition: shared_count.hpp:465
boost::detail::shared_count::shared_count
shared_count(boost::movelib::unique_ptr< Y, D > &r)
Definition: shared_count.hpp:386
A
boost::detail::shared_count::operator==
friend bool operator==(shared_count const &a, shared_count const &b)
Definition: shared_count.hpp:475
boost::detail::sp_inplace_tag
Definition: shared_count.hpp:64
boost::detail::weak_count::weak_count
weak_count(weak_count const &r)
Definition: shared_count.hpp:531
boost::movelib::unique_ptr
Definition: shared_count.hpp:48
boost::detail::shared_count::get_local_deleter
void * get_local_deleter(sp_typeinfo const &ti) const
Definition: shared_count.hpp:490
boost::detail::sp_counted_impl_pd
Definition: sp_counted_impl.hpp:140
boost::detail::sp_convert_reference::type
D type
Definition: shared_count.hpp:88
boost::detail::sp_nothrow_tag
Definition: shared_count.hpp:62
d
d
boost::detail::shared_count::shared_count
BOOST_CONSTEXPR shared_count()
Definition: shared_count.hpp:112
boost::detail::shared_count::shared_count
BOOST_CONSTEXPR shared_count(sp_counted_base *pi)
Definition: shared_count.hpp:119
boost::detail::sp_counted_base::get_deleter
virtual void * get_deleter(sp_typeinfo const &ti)=0
boost::detail::shared_count::shared_count
shared_count(P p, sp_inplace_tag< D >)
Definition: shared_count.hpp:188
boost::detail::sp_convert_reference
Definition: shared_count.hpp:86
boost::detail::weak_count::pi_
sp_counted_base * pi_
Definition: shared_count.hpp:506
boost::detail::sp_counted_base::get_local_deleter
virtual void * get_local_deleter(sp_typeinfo const &ti)=0
boost::detail::sp_counted_base::use_count
long use_count() const
Definition: sp_counted_base_std_atomic.hpp:132
boost::detail::weak_count::operator==
friend bool operator==(weak_count const &a, weak_count const &b)
Definition: shared_count.hpp:606
boost::detail::shared_count::shared_count
shared_count(P p, sp_inplace_tag< D >, A a)
Definition: shared_count.hpp:277
boost::detail::shared_count::shared_count
shared_count(shared_count &&r)
Definition: shared_count.hpp:426
boost::detail::weak_count::weak_count
weak_count(shared_count const &r)
Definition: shared_count.hpp:523
boost::detail::shared_count::operator<
friend bool operator<(shared_count const &a, shared_count const &b)
Definition: shared_count.hpp:480
boost::detail::shared_count::shared_count
shared_count(std::unique_ptr< Y, D > &r)
Definition: shared_count.hpp:361
boost::detail::weak_count::empty
bool empty() const
Definition: shared_count.hpp:601
std
boost::detail::sp_reference_wrapper::sp_reference_wrapper
sp_reference_wrapper(T &t)
Definition: shared_count.hpp:72
boost::detail::weak_count
Definition: shared_count.hpp:502
boost::checked_delete
void checked_delete(T *x)
Definition: checked_delete.hpp:29
sick_scan_base.h
boost::detail::shared_count::pi_
sp_counted_base * pi_
Definition: shared_count.hpp:102
boost::detail::shared_count::shared_count
shared_count(P p, D d)
Definition: shared_count.hpp:156
boost::detail::sp_counted_base::release
void release()
Definition: sp_counted_base_std_atomic.hpp:110
boost::detail::sp_reference_wrapper
Definition: shared_count.hpp:68
boost::detail::weak_count::operator=
weak_count & operator=(shared_count const &r)
Definition: shared_count.hpp:561
boost::detail::shared_count::get_deleter
void * get_deleter(sp_typeinfo const &ti) const
Definition: shared_count.hpp:485
boost::detail::weak_count::swap
void swap(weak_count &r)
Definition: shared_count.hpp:589
boost::detail::weak_count::weak_count
weak_count(weak_count &&r)
Definition: shared_count.hpp:543
boost::detail::shared_count::swap
void swap(shared_count &r)
Definition: shared_count.hpp:453
boost::detail::sp_counted_impl_pda
Definition: sp_counted_impl.hpp:213
sp_counted_impl.hpp
boost::detail::weak_count::use_count
long use_count() const
Definition: shared_count.hpp:596
t
geometry_msgs::TransformStamped t
boost::detail::sp_counted_base::weak_add_ref
void weak_add_ref()
Definition: sp_counted_base_std_atomic.hpp:119
checked_delete.hpp
BOOST_CONSTEXPR
#define BOOST_CONSTEXPR
Definition: sp_counted_base_std_atomic.hpp:22


sick_scan_xd
Author(s): Michael Lehning , Jochen Sprickerhof , Martin Günther
autogenerated on Fri Oct 25 2024 02:47:10