has_remove.hpp 782 B

123456789101112131415161718192021222324252627282930
  1. // Copyright 2005 Daniel Wallin.
  2. // Copyright 2005 Joel de Guzman.
  3. //
  4. // Use, modification and distribution is subject to the Boost Software
  5. // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // Modeled after range_ex, Copyright 2004 Eric Niebler
  9. ///////////////////////////////////////////////////////////////////////////////
  10. //
  11. // has_remove.hpp
  12. //
  13. /////////////////////////////////////////////////////////////////////////////
  14. #ifndef BOOST_PHOENIX_HAS_REMOVE_EN_14_12_2004
  15. #define BOOST_PHOENIX_HAS_REMOVE_EN_14_12_2004
  16. #include "./is_std_list.hpp"
  17. namespace boost
  18. {
  19. // Specialize this for user-defined types
  20. template<typename T>
  21. struct has_remove
  22. : is_std_list<T>
  23. {
  24. };
  25. }
  26. #endif