Test object identity with shared_ptr_converter.
[luabind.git] / luabind / detail / pointee_sizeof.hpp
blob3875c09ddaa05214569bae2db12d6c27d945b39f
1 // Copyright (c) 2004 Daniel Wallin and Arvid Norberg
3 // Permission is hereby granted, free of charge, to any person obtaining a
4 // copy of this software and associated documentation files (the "Software"),
5 // to deal in the Software without restriction, including without limitation
6 // the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 // and/or sell copies of the Software, and to permit persons to whom the
8 // Software is furnished to do so, subject to the following conditions:
10 // The above copyright notice and this permission notice shall be included
11 // in all copies or substantial portions of the Software.
13 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
14 // ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
15 // TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
16 // PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
17 // SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
18 // ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
19 // ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
21 // OR OTHER DEALINGS IN THE SOFTWARE.
23 #ifndef POINTEE_SIZEOF_040211_HPP
24 #define POINTEE_SIZEOF_040211_HPP
26 #include <boost/mpl/int.hpp>
28 namespace luabind {
30 namespace detail {
32 template<class T> T& deref_type(T(*)(), int);
33 template<class T> T& deref_type(T*(*)(), long);
35 } // namespace detail
37 // returns the indirect sizeof U, as in
38 // sizeof(T*) = sizeof(T)
39 // sizeof(T&) = sizeof(T)
40 // sizeof(T) = sizeof(T)
41 template<class T>
42 struct pointee_sizeof
44 BOOST_STATIC_CONSTANT(int, value = (
45 sizeof(detail::deref_type((T(*)())0), 0L)
46 ));
48 typedef boost::mpl::int_<value> type;
51 } // namespace luabind
53 #endif // POINTEE_SIZEOF_040211_HPP