property.hpp 530 B

12345678910111213141516171819202122232425
  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. {
  11. namespace detail
  12. {
  13. struct error_property_not_found
  14. {
  15. };
  16. } // namespace detail
  17. } // namespace boost
  18. #endif // BOOST_DETAIL_PROPERTY_HPP