Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 09:44:10

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_set_view.hpp
0010 /// \brief Unconstrained view of a bimap.
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 /// \brief Unconstrained view of a bimap.
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 } // namespace views
0039 } // namespace bimaps
0040 } // namespace boost
0041 
0042 #endif // BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP