sl@0: // Boost math_fwd.hpp header file ------------------------------------------// sl@0: sl@0: // (C) Copyright Hubert Holin and Daryle Walker 2001-2002. Distributed under the Boost sl@0: // Software License, Version 1.0. (See accompanying file sl@0: // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) sl@0: sl@0: // See http://www.boost.org/libs/math for documentation. sl@0: sl@0: #ifndef BOOST_MATH_FWD_HPP sl@0: #define BOOST_MATH_FWD_HPP sl@0: sl@0: sl@0: namespace boost sl@0: { sl@0: namespace math sl@0: { sl@0: sl@0: sl@0: // From ----------------------------------------// sl@0: sl@0: template < typename T > sl@0: class quaternion; sl@0: sl@0: template < > sl@0: class quaternion< float >; sl@0: template < > sl@0: class quaternion< double >; sl@0: template < > sl@0: class quaternion< long double >; sl@0: sl@0: // Also has many function templates (including operators) sl@0: sl@0: sl@0: // From ------------------------------------------// sl@0: sl@0: template < typename T > sl@0: class octonion; sl@0: sl@0: template < > sl@0: class octonion< float >; sl@0: template < > sl@0: class octonion< double >; sl@0: template < > sl@0: class octonion< long double >; sl@0: sl@0: // Also has many function templates (including operators) sl@0: sl@0: sl@0: // From ---------------------------// sl@0: sl@0: // Only has function template sl@0: sl@0: sl@0: // From ---------------------------// sl@0: sl@0: // Only has function template sl@0: sl@0: sl@0: // From ---------------------------// sl@0: sl@0: // Only has function template sl@0: sl@0: sl@0: // From ----------------------------// sl@0: sl@0: // Only has function templates sl@0: sl@0: sl@0: // From ---------------------------// sl@0: sl@0: // Only has function templates sl@0: sl@0: sl@0: // From -------------------------------------// sl@0: sl@0: // Only #includes other headers sl@0: sl@0: sl@0: // From ----------------------------------// sl@0: sl@0: template < unsigned long Value1, unsigned long Value2 > sl@0: struct static_gcd; sl@0: template < unsigned long Value1, unsigned long Value2 > sl@0: struct static_lcm; sl@0: sl@0: sl@0: // From ----------------------------------// sl@0: sl@0: template < typename IntegerType > sl@0: class gcd_evaluator; sl@0: template < typename IntegerType > sl@0: class lcm_evaluator; sl@0: sl@0: // Also has a couple of function templates sl@0: sl@0: sl@0: } // namespace math sl@0: } // namespace boost sl@0: sl@0: sl@0: #endif // BOOST_MATH_FWD_HPP