Sha256: c9c757f91490b6f9119b76bf5842a465cf1358cb7853f968a83a6ababce076e0

Contents?: true

Size: 1.42 KB

Versions: 18

Compression:

Stored size: 1.42 KB

Contents

// Copyright (C) 2004 Arkadiy Vertleyb
// 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 BOOST_TYPEOF_TYPE_ENCODING_HPP_INCLUDED
#define BOOST_TYPEOF_TYPE_ENCODING_HPP_INCLUDED

#define BOOST_TYPEOF_REGISTER_TYPE_IMPL(T, Id)                          \
                                                                        \
    template<class V> struct encode_type_impl<V, T >                    \
        : boost::type_of::push_back<V, boost::type_of::constant<std::size_t,Id> >         \
    {};                                                                 \
    template<class Iter> struct decode_type_impl<boost::type_of::constant<std::size_t,Id>, Iter> \
    {                                                                   \
        typedef T type;                                                 \
        typedef Iter iter;                                              \
    };

#define BOOST_TYPEOF_REGISTER_TYPE_EXPLICIT_ID(Type, Id)                \
    BOOST_TYPEOF_BEGIN_ENCODE_NS                                        \
    BOOST_TYPEOF_REGISTER_TYPE_IMPL(Type, Id)                           \
    BOOST_TYPEOF_END_ENCODE_NS

#define BOOST_TYPEOF_REGISTER_TYPE(Type)                                \
    BOOST_TYPEOF_REGISTER_TYPE_EXPLICIT_ID(Type, BOOST_TYPEOF_UNIQUE_ID())

#endif//BOOST_TYPEOF_TYPE_ENCODING_HPP_INCLUDED

Version data entries

18 entries across 18 versions & 1 rubygems

Version Path
passenger-6.0.20 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.19 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.18 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.17 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.16 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.15 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.14 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.13 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.12 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.11 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.10 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.9 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.8 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.7 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.6 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.5 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.4 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp
passenger-6.0.3 src/cxx_supportlib/vendor-modified/boost/typeof/type_encoding.hpp