File indexing completed on 2024-11-15 09:04:01
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef BOOST_BIMAP_VIEWS_UNCONSTRAINED_MAP_VIEW_HPP
0013 #define BOOST_BIMAP_VIEWS_UNCONSTRAINED_MAP_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 Tag, class BimapType>
0028 class unconstrained_map_view
0029 {
0030 public:
0031 template< class T >
0032 unconstrained_map_view(const T &) {}
0033
0034 typedef void iterator;
0035 typedef void const_iterator;
0036 typedef void reference;
0037 typedef void const_reference;
0038 typedef void info_type;
0039 };
0040
0041 }
0042 }
0043 }
0044
0045 #endif
0046