Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:42:06

0001 // Copyright 2002 The Trustees of Indiana University.
0002 
0003 // Use, modification and distribution is subject to the Boost Software 
0004 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0005 // http://www.boost.org/LICENSE_1_0.txt)
0006 
0007 //  Boost.MultiArray Library
0008 //  Authors: Ronald Garcia
0009 //           Jeremy Siek
0010 //           Andrew Lumsdaine
0011 //  See http://www.boost.org/libs/multi_array for documentation.
0012 
0013 
0014 #ifndef BOOST_MULTI_ARRAY_TYPES_HPP
0015 #define BOOST_MULTI_ARRAY_TYPES_HPP
0016 
0017 //
0018 // types.hpp - supply types that are needed by several headers
0019 //
0020 #include "boost/config.hpp"
0021 #include <cstddef>
0022 
0023 namespace boost {
0024 namespace detail {
0025 namespace multi_array{
0026 
0027 // needed typedefs
0028 typedef std::size_t size_type;
0029 typedef std::ptrdiff_t index;
0030 
0031 } // namespace multi_array
0032 } // namespace detail
0033 } // namespace boost
0034   
0035 
0036 
0037 
0038 #endif