File indexing completed on 2025-12-16 09:44:10
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP
0013 #define BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP
0014
0015 #if defined(_MSC_VER)
0016 #pragma once
0017 #endif
0018
0019 #include <boost/config.hpp>
0020
0021 namespace boost {
0022 namespace bimaps {
0023 namespace views {
0024
0025
0026
0027 template< class CoreIndex >
0028 class unconstrained_set_view
0029 {
0030 public:
0031 template< class T >
0032 unconstrained_set_view(const T &) {}
0033
0034 typedef void iterator;
0035 typedef void const_iterator;
0036 };
0037
0038 }
0039 }
0040 }
0041
0042 #endif