]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/boost/math_fwd.hpp
update sources to v12.2.3
[ceph.git] / ceph / src / boost / boost / math_fwd.hpp
1 // Boost math_fwd.hpp header file ------------------------------------------//
2
3 // (C) Copyright Hubert Holin and Daryle Walker 2001-2002. Distributed under the Boost
4 // Software License, Version 1.0. (See accompanying file
5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6
7 // See http://www.boost.org/libs/math for documentation.
8
9 #ifndef BOOST_MATH_FWD_HPP
10 #define BOOST_MATH_FWD_HPP
11
12 #include <boost/cstdint.hpp>
13
14 namespace boost
15 {
16 namespace math
17 {
18
19
20 // From <boost/math/quaternion.hpp> ----------------------------------------//
21
22 template < typename T >
23 class quaternion;
24
25 template < >
26 class quaternion< float >;
27 template < >
28 class quaternion< double >;
29 template < >
30 class quaternion< long double >;
31
32 // Also has many function templates (including operators)
33
34
35 // From <boost/math/octonion.hpp> ------------------------------------------//
36
37 template < typename T >
38 class octonion;
39
40 template < >
41 class octonion< float >;
42 template < >
43 class octonion< double >;
44 template < >
45 class octonion< long double >;
46
47 } // namespace math
48 } // namespace boost
49
50
51 #endif // BOOST_MATH_FWD_HPP