Chris@16: // Boost.Bimap Chris@16: // Chris@16: // Copyright (c) 2006-2007 Matias Capeletto Chris@16: // Chris@16: // Distributed under the Boost Software License, Version 1.0. Chris@16: // (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: /// \file views/unconstrained_set_view.hpp Chris@16: /// \brief Unconstrained view of a bimap. Chris@16: Chris@16: #ifndef BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP Chris@16: #define BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP Chris@16: Chris@101: #if defined(_MSC_VER) Chris@16: #pragma once Chris@16: #endif Chris@16: Chris@16: #include Chris@16: Chris@16: namespace boost { Chris@16: namespace bimaps { Chris@16: namespace views { Chris@16: Chris@16: /// \brief Unconstrained view of a bimap. Chris@16: Chris@16: template< class CoreIndex > Chris@16: class unconstrained_set_view Chris@16: { Chris@16: public: Chris@16: template< class T > Chris@16: unconstrained_set_view(const T &) {} Chris@16: Chris@16: typedef void iterator; Chris@16: typedef void const_iterator; Chris@16: }; Chris@16: Chris@16: } // namespace views Chris@16: } // namespace bimaps Chris@16: } // namespace boost Chris@16: Chris@16: #endif // BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP