| 1 | // Copyright 2002 The Trustees of Indiana University. |
| 2 | |
| 3 | // Use, modification and distribution is subject to the Boost Software |
| 4 | // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at |
| 5 | // http://www.boost.org/LICENSE_1_0.txt) |
| 6 | |
| 7 | // Boost.MultiArray Library |
| 8 | // Authors: Ronald Garcia |
| 9 | // Jeremy Siek |
| 10 | // Andrew Lumsdaine |
| 11 | // See http://www.boost.org/libs/multi_array for documentation. |
| 12 | |
| 13 | #ifndef BOOST_MULTI_ARRAY_COLLECTION_CONCEPT_HPP |
| 14 | #define BOOST_MULTI_ARRAY_COLLECTION_CONCEPT_HPP |
| 15 | |
| 16 | #include "boost/concept_check.hpp" |
| 17 | |
| 18 | namespace boost { |
| 19 | namespace detail { |
| 20 | namespace multi_array { // Old location for this |
| 21 | using boost::CollectionConcept; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | } |
| 26 | #endif |
| 27 | |