property.hpp 528 B

123456789101112131415161718192021
  1. // (C) Copyright Jeremy Siek 2004
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_DETAIL_PROPERTY_HPP
  6. #define BOOST_DETAIL_PROPERTY_HPP
  7. #include <utility> // for std::pair
  8. #include <boost/type_traits/same_traits.hpp> // for is_same
  9. namespace boost {
  10. namespace detail {
  11. struct error_property_not_found { };
  12. } // namespace detail
  13. } // namespace boost
  14. #endif // BOOST_DETAIL_PROPERTY_HPP