/Src/Dependencies/Boost/boost/spirit/home/phoenix/stl/algorithm/detail/has_remove.hpp

http://hadesmem.googlecode.com/ · C++ Header · 34 lines · 15 code · 5 blank · 14 comment · 1 complexity · 1890fc5e0565543f5388559b06e68958 MD5 · raw file

  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. #if defined(_MSC_VER) && _MSC_VER >= 1000
  15. #pragma once
  16. #endif
  17. #ifndef HAS_REMOVE_EN_14_12_2004
  18. #define HAS_REMOVE_EN_14_12_2004
  19. #include "./is_std_list.hpp"
  20. namespace boost
  21. {
  22. // Specialize this for user-defined types
  23. template<typename T>
  24. struct has_remove
  25. : is_std_list<T>
  26. {
  27. };
  28. }
  29. #endif