mgcpp
A C++ Math Library Based on CUDA
forward.hpp
Go to the documentation of this file.
1 
2 // Copyright RedPortal, mujjingun 2017 - 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef _MGCPP_EXPRESSIONS_FORWARD_HPP_
8 #define _MGCPP_EXPRESSIONS_FORWARD_HPP_
9 
10 #include <cstddef>
11 
12 namespace mgcpp {
13 
14 template <typename Type>
15 class expression;
16 
17 struct eval_context;
18 
19 template <typename TagType,
20  size_t Tag,
21  template <typename> class ResultExprType,
22  typename ResultType,
23  size_t NParameters,
24  typename... OperandTypes>
25 struct generic_expr;
26 } // namespace mgcpp
27 
28 #endif
Definition: adapter_base.hpp:12
Definition: forward.hpp:25