math_fwd.hpp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // Boost math_fwd.hpp header file ------------------------------------------//
  2. // (C) Copyright Hubert Holin and Daryle Walker 2001-2002. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. // See http://www.boost.org/libs/math for documentation.
  6. #ifndef BOOST_MATH_FWD_HPP
  7. #define BOOST_MATH_FWD_HPP
  8. namespace boost
  9. {
  10. namespace math
  11. {
  12. // From <boost/math/quaternion.hpp> ----------------------------------------//
  13. template < typename T >
  14. class quaternion;
  15. template < >
  16. class quaternion< float >;
  17. template < >
  18. class quaternion< double >;
  19. template < >
  20. class quaternion< long double >;
  21. // Also has many function templates (including operators)
  22. // From <boost/math/octonion.hpp> ------------------------------------------//
  23. template < typename T >
  24. class octonion;
  25. template < >
  26. class octonion< float >;
  27. template < >
  28. class octonion< double >;
  29. template < >
  30. class octonion< long double >;
  31. // Also has many function templates (including operators)
  32. // From <boost/math/special_functions/acosh.hpp> ---------------------------//
  33. // Only has function template
  34. // From <boost/math/special_functions/asinh.hpp> ---------------------------//
  35. // Only has function template
  36. // From <boost/math/special_functions/atanh.hpp> ---------------------------//
  37. // Only has function template
  38. // From <boost/math/special_functions/sinc.hpp> ----------------------------//
  39. // Only has function templates
  40. // From <boost/math/special_functions/sinhc.hpp> ---------------------------//
  41. // Only has function templates
  42. // From <boost/math/common_factor.hpp> -------------------------------------//
  43. // Only #includes other headers
  44. // From <boost/math/common_factor_ct.hpp> ----------------------------------//
  45. template < unsigned long Value1, unsigned long Value2 >
  46. struct static_gcd;
  47. template < unsigned long Value1, unsigned long Value2 >
  48. struct static_lcm;
  49. // From <boost/math/common_factor_rt.hpp> ----------------------------------//
  50. template < typename IntegerType >
  51. class gcd_evaluator;
  52. template < typename IntegerType >
  53. class lcm_evaluator;
  54. // Also has a couple of function templates
  55. } // namespace math
  56. } // namespace boost
  57. #endif // BOOST_MATH_FWD_HPP