New URL for NEMO forge!   http://forge.nemo-ocean.eu

Since March 2022 along with NEMO 4.2 release, the code development moved to a self-hosted GitLab.
This present forge is now archived and remained online for history.
types.hpp in vendors/XIOS/current/extern/boost/include/boost/multi_array – NEMO

source: vendors/XIOS/current/extern/boost/include/boost/multi_array/types.hpp @ 3408

Last change on this file since 3408 was 3408, checked in by rblod, 12 years ago

importing initial XIOS vendor drop

  • Property svn:keywords set to Id
File size: 895 bytes
Line 
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
14#ifndef BOOST_MULTI_ARRAY_TYPES_RG071801_HPP
15#define BOOST_MULTI_ARRAY_TYPES_RG071801_HPP
16
17//
18// types.hpp - supply types that are needed by several headers
19//
20#include "boost/config.hpp"
21#include <cstddef>
22
23namespace boost {
24namespace detail {
25namespace multi_array{
26
27// needed typedefs
28typedef std::size_t size_type;
29typedef std::ptrdiff_t index;
30
31} // namespace multi_array
32} // namespace detail
33} // namespace boost
34 
35
36
37
38#endif // BOOST_MULTI_ARRAY_TYPES_RG071801_HPP
Note: See TracBrowser for help on using the repository browser.