Blame boost/math_fwd.hpp

Packit 58578d
//  Boost math_fwd.hpp header file  ------------------------------------------//
Packit 58578d
Packit 58578d
//  (C) Copyright Hubert Holin and Daryle Walker 2001-2002.  Distributed under the Boost
Packit 58578d
//  Software License, Version 1.0. (See accompanying file
Packit 58578d
//  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Packit 58578d
Packit 58578d
//  See http://www.boost.org/libs/math for documentation.
Packit 58578d
Packit 58578d
#ifndef BOOST_MATH_FWD_HPP
Packit 58578d
#define BOOST_MATH_FWD_HPP
Packit 58578d
Packit 58578d
#include <boost/cstdint.hpp>
Packit 58578d
Packit 58578d
namespace boost
Packit 58578d
{
Packit 58578d
namespace math
Packit 58578d
{
Packit 58578d
Packit 58578d
Packit 58578d
//  From <boost/math/quaternion.hpp>  ----------------------------------------//
Packit 58578d
Packit 58578d
template < typename T >
Packit 58578d
    class quaternion;
Packit 58578d
Packit 58578d
template < >
Packit 58578d
    class quaternion< float >;
Packit 58578d
template < >
Packit 58578d
    class quaternion< double >;
Packit 58578d
template < >
Packit 58578d
    class quaternion< long double >;
Packit 58578d
Packit 58578d
// Also has many function templates (including operators)
Packit 58578d
Packit 58578d
Packit 58578d
//  From <boost/math/octonion.hpp>  ------------------------------------------//
Packit 58578d
Packit 58578d
template < typename T >
Packit 58578d
    class octonion;
Packit 58578d
Packit 58578d
template < >
Packit 58578d
    class octonion< float >;
Packit 58578d
template < >
Packit 58578d
    class octonion< double >;
Packit 58578d
template < >
Packit 58578d
    class octonion< long double >;
Packit 58578d
Packit 58578d
}  // namespace math
Packit 58578d
}  // namespace boost
Packit 58578d
Packit 58578d
Packit 58578d
#endif  // BOOST_MATH_FWD_HPP