Mercurial > hg > vamp-build-and-test
annotate DEPENDENCIES/generic/include/boost/bimap/views/unconstrained_map_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_map_view.hpp |
Chris@16 | 10 /// \brief Unconstrained view of a side of a bimap. |
Chris@16 | 11 |
Chris@16 | 12 #ifndef BOOST_BIMAP_VIEWS_UNCONSTRAINED_MAP_VIEW_HPP |
Chris@16 | 13 #define BOOST_BIMAP_VIEWS_UNCONSTRAINED_MAP_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 side of a bimap. |
Chris@16 | 26 |
Chris@16 | 27 template< class Tag, class BimapType> |
Chris@16 | 28 class unconstrained_map_view |
Chris@16 | 29 { |
Chris@16 | 30 public: |
Chris@16 | 31 template< class T > |
Chris@16 | 32 unconstrained_map_view(const T &) {} |
Chris@16 | 33 |
Chris@16 | 34 typedef void iterator; |
Chris@16 | 35 typedef void const_iterator; |
Chris@16 | 36 typedef void reference; |
Chris@16 | 37 typedef void const_reference; |
Chris@16 | 38 typedef void info_type; |
Chris@16 | 39 }; |
Chris@16 | 40 |
Chris@16 | 41 } // namespace views |
Chris@16 | 42 } // namespace bimaps |
Chris@16 | 43 } // namespace boost |
Chris@16 | 44 |
Chris@16 | 45 #endif // BOOST_BIMAP_VIEWS_UNCONSTRAINED_MAP_VIEW_HPP |
Chris@16 | 46 |