37 lines
836 B
C++
37 lines
836 B
C++
// Copyright (c) Dean Michael Berris 2008, 2009.
|
|
// 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_NETWORK_TRAITS_VECTOR_HPP
|
|
#define BOOST_NETWORK_TRAITS_VECTOR_HPP
|
|
|
|
#include <boost/network/support/is_default_string.hpp>
|
|
#include <vector>
|
|
|
|
namespace boost { namespace network {
|
|
|
|
template <class Tag>
|
|
struct unsupported_tag;
|
|
|
|
template <class Tag>
|
|
struct vector {
|
|
|
|
template <class Type>
|
|
struct apply :
|
|
mpl::if_<
|
|
is_default_string<Tag>
|
|
, std::vector<Type>
|
|
, unsupported_tag<Tag>
|
|
>
|
|
{};
|
|
|
|
};
|
|
|
|
} // namespace network
|
|
|
|
} // namespace boost
|
|
|
|
#endif // BOOST_NETWORK_TRAITS_VECTOR_HPP
|
|
|