mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2026-06-02 22:14:56 -04:00
ecaa982b9f
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7593 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
31 lines
946 B
C++
31 lines
946 B
C++
// Copyright David Abrahams 2002.
|
|
// Distributed under 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 REGISTERED_POINTEE_DWA2002710_HPP
|
|
# define REGISTERED_POINTEE_DWA2002710_HPP
|
|
# include <boost/python/converter/registered.hpp>
|
|
# include <boost/python/converter/pointer_type_id.hpp>
|
|
# include <boost/python/converter/registry.hpp>
|
|
# include <boost/type_traits/transform_traits.hpp>
|
|
# include <boost/type_traits/cv_traits.hpp>
|
|
|
|
namespace boost { namespace python { namespace converter {
|
|
|
|
struct registration;
|
|
|
|
template <class T>
|
|
struct registered_pointee
|
|
: registered<
|
|
typename remove_pointer<
|
|
typename remove_cv<
|
|
typename remove_reference<T>::type
|
|
>::type
|
|
>::type
|
|
>
|
|
{
|
|
};
|
|
}}} // namespace boost::python::converter
|
|
|
|
#endif // REGISTERED_POINTEE_DWA2002710_HPP
|