fix doc example typo
[boost.git] / boost / bimap / views / unconstrained_set_view.hpp
blob6b4a6e220d24886c41b907a03050592da01e7b19
1 // Boost.Bimap
2 //
3 // Copyright (c) 2006-2007 Matias Capeletto
4 //
5 // Distributed under the Boost Software License, Version 1.0.
6 // (See accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
9 /// \file views/unconstrained_set_view.hpp
10 /// \brief Unconstrained view of a bimap.
12 #ifndef BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP
13 #define BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP
15 #if defined(_MSC_VER) && (_MSC_VER>=1200)
16 #pragma once
17 #endif
19 #include <boost/config.hpp>
21 namespace boost {
22 namespace bimaps {
23 namespace views {
25 /// \brief Unconstrained view of a bimap.
27 template< class CoreIndex >
28 class unconstrained_set_view
30 public:
31 template< class T >
32 unconstrained_set_view(const T & t) {}
34 typedef void iterator;
35 typedef void const_iterator;
38 } // namespace views
39 } // namespace bimaps
40 } // namespace boost
42 #endif // BOOST_BIMAP_VIEWS_UNCONSTRAINED_SET_VIEW_HPP