]> git.lyx.org Git - lyx.git/blob - boost/boost/multi_array/types.hpp
complie fix
[lyx.git] / boost / boost / multi_array / types.hpp
1 // Copyright (C) 2002 Ronald Garcia
2 //
3 // Permission to copy, use, sell and distribute this software is granted
4 // provided this copyright notice appears in all copies. 
5 // Permission to modify the code and to distribute modified code is granted
6 // provided this copyright notice appears in all copies, and a notice 
7 // that the code was modified is included with the copyright notice.
8 //
9 // This software is provided "as is" without express or implied warranty, 
10 // and with no claim as to its suitability for any purpose.
11 //
12
13 #ifndef BOOST_MULTI_ARRAY_TYPES_RG071801_HPP
14 #define BOOST_MULTI_ARRAY_TYPES_RG071801_HPP
15
16 //
17 // types.hpp - supply types that are needed by several headers
18 //
19 #include "boost/config.hpp"
20 #include <cstddef>
21
22 namespace boost {
23 namespace detail {
24 namespace multi_array{
25
26 // needed typedefs
27 typedef std::size_t size_type;
28 typedef int index;
29
30 } // namespace multi_array
31 } // namespace detail
32 } // namespace boost
33   
34
35
36
37 #endif // BOOST_MULTI_ARRAY_TYPES_RG071801_HPP