math_fwd.hpp 975 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. // Also has many function templates (including operators)
  16. // From <boost/math/octonion.hpp> ------------------------------------------//
  17. template < typename T >
  18. class octonion;
  19. template < >
  20. class octonion< float >;
  21. template < >
  22. class octonion< double >;
  23. template < >
  24. class octonion< long double >;
  25. } // namespace math
  26. } // namespace boost
  27. #endif // BOOST_MATH_FWD_HPP