123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101 |
- #ifndef BOOST_MATH_FWD_HPP
- #define BOOST_MATH_FWD_HPP
- namespace boost
- {
- namespace math
- {
- template < typename T >
- class quaternion;
- template < >
- class quaternion< float >;
- template < >
- class quaternion< double >;
- template < >
- class quaternion< long double >;
- template < typename T >
- class octonion;
- template < >
- class octonion< float >;
- template < >
- class octonion< double >;
- template < >
- class octonion< long double >;
- template < unsigned long Value1, unsigned long Value2 >
- struct static_gcd;
- template < unsigned long Value1, unsigned long Value2 >
- struct static_lcm;
- template < typename IntegerType >
- class gcd_evaluator;
- template < typename IntegerType >
- class lcm_evaluator;
- }
- }
- #endif
|