| 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 | namespace boost |
| 13 | { |
| 14 | namespace math |
| 15 | { |
| 16 | |
| 17 | |
| 18 | // From <boost/math/quaternion.hpp> ----------------------------------------// |
| 19 | |
| 20 | template < typename T > |
| 21 | class quaternion; |
| 22 | |
| 23 | // Also has many function templates (including operators) |
| 24 | |
| 25 | |
| 26 | // From <boost/math/octonion.hpp> ------------------------------------------// |
| 27 | |
| 28 | template < typename T > |
| 29 | class octonion; |
| 30 | |
| 31 | template < > |
| 32 | class octonion< float >; |
| 33 | template < > |
| 34 | class octonion< double >; |
| 35 | template < > |
| 36 | class octonion< long double >; |
| 37 | |
| 38 | } // namespace math |
| 39 | } // namespace boost |
| 40 | |
| 41 | |
| 42 | #endif // BOOST_MATH_FWD_HPP |
| 43 | |