Warning, file /include/boost/multi_index/safe_mode_errors.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 
0002 
0003 
0004 
0005 
0006 
0007 
0008 
0009 #ifndef BOOST_MULTI_INDEX_SAFE_MODE_ERRORS_HPP
0010 #define BOOST_MULTI_INDEX_SAFE_MODE_ERRORS_HPP
0011 
0012 #if defined(_MSC_VER)
0013 #pragma once
0014 #endif
0015 
0016 namespace boost{
0017 
0018 namespace multi_index{
0019 
0020 namespace safe_mode{
0021 
0022 
0023 
0024 
0025 
0026 
0027 
0028 enum error_code
0029 {
0030   invalid_iterator=0,
0031   not_dereferenceable_iterator,
0032   not_incrementable_iterator,
0033   not_decrementable_iterator,
0034   not_owner,
0035   not_same_owner,
0036   invalid_range,
0037   inside_range,
0038   out_of_bounds,
0039   same_container,
0040   unequal_allocators
0041 };
0042 
0043 } 
0044 
0045 } 
0046 
0047 } 
0048 
0049 #endif