Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:47:40

0001 // Copyright 2005 Daniel Wallin.
0002 // Copyright 2005 Joel de Guzman.
0003 //
0004 // Use, modification and distribution is subject to the Boost Software
0005 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0006 // http://www.boost.org/LICENSE_1_0.txt)
0007 //
0008 // Modeled after range_ex, Copyright 2004 Eric Niebler
0009 ///////////////////////////////////////////////////////////////////////////////
0010 //
0011 // has_unique.hpp
0012 //
0013 /////////////////////////////////////////////////////////////////////////////
0014 
0015 #if defined(_MSC_VER)
0016 #pragma once
0017 #endif
0018 
0019 #ifndef BOOST_PHOENIX_HAS_UNIQUE_EN_14_12_2004
0020 #define BOOST_PHOENIX_HAS_UNIQUE_EN_14_12_2004
0021 
0022 #include "./is_std_list.hpp"
0023 
0024 namespace boost
0025 {
0026     // Specialize this for user-defined types
0027     template<typename T>
0028     struct has_unique
0029         : is_std_list<T>
0030     {
0031     };
0032 }
0033 
0034 #endif