/usr/include/luabind
NameSizeModeActions
detail/-0755rm
adopt_policy.hpp50910644editdlrm
back_reference.hpp31110644editdlrm
back_reference_fwd.hpp14950644editdlrm
build_information.hpp20150644editdlrm
class.hpp274900644editdlrm
class_info.hpp17040644editdlrm
config.hpp52320644editdlrm
container_policy.hpp49510644editdlrm
copy_policy.hpp13130644editdlrm
dependency_policy.hpp26910644editdlrm
discard_result_policy.hpp25120644editdlrm
error.hpp33450644editdlrm
error_callback_fun.hpp17500644editdlrm
exception_handler.hpp20860644editdlrm
from_stack.hpp14850644editdlrm
function.hpp15190644editdlrm
function_converter.hpp40210644editdlrm
function_introspection.hpp19490644editdlrm
get_main_thread.hpp5220644editdlrm
get_pointer.hpp15540644editdlrm
handle.hpp42180644editdlrm
intrusive_ptr_converter.hpp17890644editdlrm
iterator_policy.hpp29820644editdlrm
luabind.hpp13560644editdlrm
lua_include.hpp26650644editdlrm
lua_state_fwd.hpp13570644editdlrm
make_function.hpp32380644editdlrm
nil.hpp13680644editdlrm
no_dependency.hpp9030644editdlrm
object.hpp12910644editdlrm
object_fwd.hpp3310644editdlrm
open.hpp13710644editdlrm
operator.hpp89930644editdlrm
out_value_policy.hpp120290644editdlrm
prefix.hpp12650644editdlrm
raw_policy.hpp24260644editdlrm
return_reference_to_policy.hpp26610644editdlrm
scope.hpp29440644editdlrm
set_package_preload.hpp24520644editdlrm
shared_ptr_converter.hpp52740644editdlrm
stack.hpp40160644editdlrm
std_shared_ptr_converter.hpp22710644editdlrm
tag_function.hpp16220644editdlrm
typeid.hpp24980644editdlrm
value_wrapper.hpp42410644editdlrm
version.hpp5130644editdlrm
weak_ref.hpp18340644editdlrm
wrapper_base.hpp59870644editdlrm
yield_policy.hpp17340644editdlrm
Edit: /usr/include/luabind/std_shared_ptr_converter.hpp (2271B)
// Copyright Christian Neumüller 2012. Use, modification and distribution is // subject to the Boost Software License, Version 1.0. (See accompanying // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) #ifndef LUABIND_STD_SHAREDPTR_CONVERTER_HPP_INCLUDED #define LUABIND_STD_SHAREDPTR_CONVERTER_HPP_INCLUDED LUABIND_STD_SHAREDPTR_CONVERTER_HPP_INCLUDED #include #if defined(LUABIND_NO_STD_SHARED_PTR) \ || defined(BOOST_NO_CXX11_SMART_PTR) \ && !defined(BOOST_HAS_TR1_SHARED_PTR) \ && (!defined(BOOST_MSVC) || BOOST_MSVC < 1600) # ifndef LUABIND_NO_STD_SHARED_PTR # define LUABIND_NO_STD_SHARED_PTR # endif #else # include # include // shared_ptr # if BOOST_VERSION >= 105300 # include # include namespace luabind { namespace detail { namespace has_get_pointer_ { template struct impl> { BOOST_STATIC_CONSTANT(bool, value = true); typedef boost::mpl::bool_ type; }; template struct impl>: impl> { }; template struct impl>: impl> { }; template struct impl>: impl> { }; }} using boost::get_pointer; } # else // if BOOST_VERSION < 105300 // Not standard conforming: add function to ::std(::tr1) namespace std { # if defined(_MSC_VER) && _MSC_VER < 1700 namespace tr1 { # endif template T * get_pointer(shared_ptr const& p) { return p.get(); } # if defined(_MSC_VER) && _MSC_VER < 1700 } // namespace tr1 # endif } // namespace std #endif // if BOOST_VERSION < 105300 / else namespace luabind { using std::get_deleter; template struct default_converter >: detail::shared_ptr_converter > {}; template struct default_converter const&>: detail::shared_ptr_converter > {}; } // namespace luabind #endif // if smart pointers are available #endif // LUABIND_STD_SHAREDPTR_CONVERTER_HPP_INCLUDED