LSSTApplications  10.0+286,10.0+36,10.0+46,10.0-2-g4f67435,10.1+152,10.1+37,11.0,11.0+1,11.0-1-g47edd16,11.0-1-g60db491,11.0-1-g7418c06,11.0-2-g04d2804,11.0-2-g68503cd,11.0-2-g818369d,11.0-2-gb8b8ce7
LSSTDataManagementBasePackage
ndarray_fwd.h
Go to the documentation of this file.
1 // -*- c++ -*-
2 /*
3  * LSST Data Management System
4  * Copyright 2008, 2009, 2010, 2011 LSST Corporation.
5  *
6  * This product includes software developed by the
7  * LSST Project (http://www.lsst.org/).
8  *
9  * This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the LSST License Statement and
20  * the GNU General Public License along with this program. If not,
21  * see <http://www.lsstcorp.org/LegalNotices/>.
22  */
23 #ifndef NDARRAY_ndarray_fwd_h_INCLUDED
24 #define NDARRAY_ndarray_fwd_h_INCLUDED
25 
32 
35 
37 
39 
40 #include <boost/type_traits/is_const.hpp>
41 #include <boost/type_traits/add_const.hpp>
42 #include <boost/type_traits/remove_const.hpp>
43 #include <cassert>
44 
45 #ifdef __GNUC__
46 #if __GNUC__ == 4 && __GNUC_MINOR__ == 5
47 #define GCC_45
48 #endif
49 #endif
50 
51 #define NDARRAY_ASSERT(ARG) assert(ARG)
52 
53 namespace ndarray {
54 
55 template <typename T, int N, int C> struct ArrayTraits;
56 template <typename Expression_> struct ExpressionTraits;
57 class Manager;
58 
61 
62 namespace detail {
63 
64 template <int N> class Core;
65 
66 class CountingExpression;
67 
68 template <
69  typename Operand,
70  typename UnaryFunction,
71  int N = ExpressionTraits<Operand>::ND::value
72  >
73 class UnaryOpExpression;
74 
75 template <
76  typename Operand1,
77  typename Operand2,
78  typename BinaryFunction,
79  int N = ExpressionTraits<Operand1>::ND::value
80  >
81 class BinaryOpExpression;
82 
83 template <typename Iterator_> struct IteratorTraits;
84 
85 template <typename T, int N, int C> class NestedIterator;
86 
87 template <typename T> class StridedIterator;
88 
89 #ifndef GCC_45
90 
91 template <
92  typename Operand,
93  typename UnaryFunction
94  >
95 class UnaryOpIterator;
96 
97 template <
98  typename Operand1,
99  typename Operand2,
100  typename BinaryFunction
101  >
102 class BinaryOpIterator;
103 
104 #endif
105 
106 } // namespace detail
107 
108 template <typename Derived> class ExpressionBase;
109 template <typename Derived> class ArrayBase;
110 template <typename T, int N, int C=0> class ArrayRef;
111 template <typename T, int N, int C=0> class Array;
112 template <typename T, int N> struct Vector;
113 
114 } // namespace ndarray
115 
116 #endif // !NDARRAY_ndarray_fwd_h_INCLUDED
A proxy class for Array with deep assignment operators.
Definition: ArrayRef.h:46
A fixed-size 1D array class.
Definition: Vector.h:93
CRTP implementation for Array and ArrayRef.
Definition: ArrayBase.h:56
DataOrderEnum
An enumeration for stride computation.
Definition: ndarray_fwd.h:60
A multidimensional strided array.
Definition: Array.h:47
CRTP base class for all multidimensional expressions.