Realistic 3D camera system
3D camera system components
null_tss_ptr.hpp
Go to the documentation of this file.
1 //
2 // detail/null_tss_ptr.hpp
3 // ~~~~~~~~~~~~~~~~~~~~~~~
4 //
5 // Copyright (c) 2003-2015 Christopher M. Kohlhoff (chris at kohlhoff dot com)
6 //
7 // Distributed under the Boost Software License, Version 1.0. (See accompanying
8 // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
9 //
10 
11 #ifndef ASIO_DETAIL_NULL_TSS_PTR_HPP
12 #define ASIO_DETAIL_NULL_TSS_PTR_HPP
13 
14 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
15 # pragma once
16 #endif // defined(_MSC_VER) && (_MSC_VER >= 1200)
17 
18 #include "asio/detail/config.hpp"
19 
20 #if !defined(ASIO_HAS_THREADS)
21 
23 
25 
26 namespace asio {
27 namespace detail {
28 
29 template <typename T>
31  : private noncopyable
32 {
33 public:
34  // Constructor.
36  : value_(0)
37  {
38  }
39 
40  // Destructor.
42  {
43  }
44 
45  // Get the value.
46  operator T*() const
47  {
48  return value_;
49  }
50 
51  // Set the value.
52  void operator=(T* value)
53  {
54  value_ = value;
55  }
56 
57 private:
58  T* value_;
59 };
60 
61 } // namespace detail
62 } // namespace asio
63 
65 
66 #endif // !defined(ASIO_HAS_THREADS)
67 
68 #endif // ASIO_DETAIL_NULL_TSS_PTR_HPP