annotate DEPENDENCIES/generic/include/boost/bimap/views/unconstrained_set_view.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents c530137014c0
children
rev   line source
Chris@16 1 // Boost.Bimap
Chris@16 2 //
Chris@16 3 // Copyright (c) 2006-2007 Matias Capeletto
Chris@16 4 //
Chris@16 5 // Distributed under the Boost Software License, Version 1.0.
Chris@16 6 // (See accompanying file LICENSE_1_0.txt or copy at
Chris@16 7 // http://www.boost.org/LICENSE_1_0.txt)
Chris@16 8
Chris@16 9 /// \file views/unconstrained_set_view.hpp
Chris@16 10 /// \brief Unconstrained view of a bimap.
Chris@16 11
Chris@16 12 #ifndef BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP
Chris@16 13 #define BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP
Chris@16 14
Chris@101 15 #if defined(_MSC_VER)
Chris@16 16 #pragma once
Chris@16 17 #endif
Chris@16 18
Chris@16 19 #include <boost/config.hpp>
Chris@16 20
Chris@16 21 namespace boost {
Chris@16 22 namespace bimaps {
Chris@16 23 namespace views {
Chris@16 24
Chris@16 25 /// \brief Unconstrained view of a bimap.
Chris@16 26
Chris@16 27 template< class CoreIndex >
Chris@16 28 class unconstrained_set_view
Chris@16 29 {
Chris@16 30 public:
Chris@16 31 template< class T >
Chris@16 32 unconstrained_set_view(const T &) {}
Chris@16 33
Chris@16 34 typedef void iterator;
Chris@16 35 typedef void const_iterator;
Chris@16 36 };
Chris@16 37
Chris@16 38 } // namespace views
Chris@16 39 } // namespace bimaps
Chris@16 40 } // namespace boost
Chris@16 41
Chris@16 42 #endif // BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP