Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2024-11-15 09:04:01

0001 // Boost.Bimap
0002 //
0003 // Copyright (c) 2006-2007 Matias Capeletto
0004 //
0005 // Distributed under the Boost Software License, Version 1.0.
0006 // (See accompanying file LICENSE_1_0.txt or copy at
0007 // http://www.boost.org/LICENSE_1_0.txt)
0008 
0009 /// \file views/unconstrained_map_view.hpp
0010 /// \brief Unconstrained view of a side of a bimap.
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 /// \brief Unconstrained view of a side of a bimap.
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 } // namespace views
0042 } // namespace bimaps
0043 } // namespace boost
0044 
0045 #endif // BOOST_BIMAP_VIEWS_UNCONSTRAINED_MAP_VIEW_HPP
0046