sl@0
|
1 |
// Boost math_fwd.hpp header file ------------------------------------------//
|
sl@0
|
2 |
|
sl@0
|
3 |
// (C) Copyright Hubert Holin and Daryle Walker 2001-2002. Distributed under the Boost
|
sl@0
|
4 |
// Software License, Version 1.0. (See accompanying file
|
sl@0
|
5 |
// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
sl@0
|
6 |
|
sl@0
|
7 |
// See http://www.boost.org/libs/math for documentation.
|
sl@0
|
8 |
|
sl@0
|
9 |
#ifndef BOOST_MATH_FWD_HPP
|
sl@0
|
10 |
#define BOOST_MATH_FWD_HPP
|
sl@0
|
11 |
|
sl@0
|
12 |
|
sl@0
|
13 |
namespace boost
|
sl@0
|
14 |
{
|
sl@0
|
15 |
namespace math
|
sl@0
|
16 |
{
|
sl@0
|
17 |
|
sl@0
|
18 |
|
sl@0
|
19 |
// From <boost/math/quaternion.hpp> ----------------------------------------//
|
sl@0
|
20 |
|
sl@0
|
21 |
template < typename T >
|
sl@0
|
22 |
class quaternion;
|
sl@0
|
23 |
|
sl@0
|
24 |
template < >
|
sl@0
|
25 |
class quaternion< float >;
|
sl@0
|
26 |
template < >
|
sl@0
|
27 |
class quaternion< double >;
|
sl@0
|
28 |
template < >
|
sl@0
|
29 |
class quaternion< long double >;
|
sl@0
|
30 |
|
sl@0
|
31 |
// Also has many function templates (including operators)
|
sl@0
|
32 |
|
sl@0
|
33 |
|
sl@0
|
34 |
// From <boost/math/octonion.hpp> ------------------------------------------//
|
sl@0
|
35 |
|
sl@0
|
36 |
template < typename T >
|
sl@0
|
37 |
class octonion;
|
sl@0
|
38 |
|
sl@0
|
39 |
template < >
|
sl@0
|
40 |
class octonion< float >;
|
sl@0
|
41 |
template < >
|
sl@0
|
42 |
class octonion< double >;
|
sl@0
|
43 |
template < >
|
sl@0
|
44 |
class octonion< long double >;
|
sl@0
|
45 |
|
sl@0
|
46 |
// Also has many function templates (including operators)
|
sl@0
|
47 |
|
sl@0
|
48 |
|
sl@0
|
49 |
// From <boost/math/special_functions/acosh.hpp> ---------------------------//
|
sl@0
|
50 |
|
sl@0
|
51 |
// Only has function template
|
sl@0
|
52 |
|
sl@0
|
53 |
|
sl@0
|
54 |
// From <boost/math/special_functions/asinh.hpp> ---------------------------//
|
sl@0
|
55 |
|
sl@0
|
56 |
// Only has function template
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
// From <boost/math/special_functions/atanh.hpp> ---------------------------//
|
sl@0
|
60 |
|
sl@0
|
61 |
// Only has function template
|
sl@0
|
62 |
|
sl@0
|
63 |
|
sl@0
|
64 |
// From <boost/math/special_functions/sinc.hpp> ----------------------------//
|
sl@0
|
65 |
|
sl@0
|
66 |
// Only has function templates
|
sl@0
|
67 |
|
sl@0
|
68 |
|
sl@0
|
69 |
// From <boost/math/special_functions/sinhc.hpp> ---------------------------//
|
sl@0
|
70 |
|
sl@0
|
71 |
// Only has function templates
|
sl@0
|
72 |
|
sl@0
|
73 |
|
sl@0
|
74 |
// From <boost/math/common_factor.hpp> -------------------------------------//
|
sl@0
|
75 |
|
sl@0
|
76 |
// Only #includes other headers
|
sl@0
|
77 |
|
sl@0
|
78 |
|
sl@0
|
79 |
// From <boost/math/common_factor_ct.hpp> ----------------------------------//
|
sl@0
|
80 |
|
sl@0
|
81 |
template < unsigned long Value1, unsigned long Value2 >
|
sl@0
|
82 |
struct static_gcd;
|
sl@0
|
83 |
template < unsigned long Value1, unsigned long Value2 >
|
sl@0
|
84 |
struct static_lcm;
|
sl@0
|
85 |
|
sl@0
|
86 |
|
sl@0
|
87 |
// From <boost/math/common_factor_rt.hpp> ----------------------------------//
|
sl@0
|
88 |
|
sl@0
|
89 |
template < typename IntegerType >
|
sl@0
|
90 |
class gcd_evaluator;
|
sl@0
|
91 |
template < typename IntegerType >
|
sl@0
|
92 |
class lcm_evaluator;
|
sl@0
|
93 |
|
sl@0
|
94 |
// Also has a couple of function templates
|
sl@0
|
95 |
|
sl@0
|
96 |
|
sl@0
|
97 |
} // namespace math
|
sl@0
|
98 |
} // namespace boost
|
sl@0
|
99 |
|
sl@0
|
100 |
|
sl@0
|
101 |
#endif // BOOST_MATH_FWD_HPP
|