~ubuntu-branches/ubuntu/warty/aqsis/warty

« back to all changes in this revision

Viewing changes to boost/boost/math_fwd.hpp

  • Committer: Bazaar Package Importer
  • Author(s): LaMont Jones
  • Date: 2004-08-24 07:25:04 UTC
  • Revision ID: james.westby@ubuntu.com-20040824072504-zf993vnevvisdsvb
Tags: upstream-0.9.1
ImportĀ upstreamĀ versionĀ 0.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//  Boost math_fwd.hpp header file  ------------------------------------------//
 
2
 
 
3
//  (C) Copyright boost.org 2001-2002.  Permission to copy, use, modify, sell
 
4
//  and distribute this software is granted provided this copyright
 
5
//  notice appears in all copies.  This software is provided "as is" without
 
6
//  express or implied warranty, and with no claim as to its suitability for
 
7
//  any purpose.
 
8
 
 
9
//  See http://www.boost.org/libs/math for documentation.
 
10
 
 
11
#ifndef BOOST_MATH_FWD_HPP
 
12
#define BOOST_MATH_FWD_HPP
 
13
 
 
14
 
 
15
namespace boost
 
16
{
 
17
namespace math
 
18
{
 
19
 
 
20
 
 
21
//  From <boost/math/quaternion.hpp>  ----------------------------------------//
 
22
 
 
23
template < typename T >
 
24
    class quaternion;
 
25
 
 
26
template < >
 
27
    class quaternion< float >;
 
28
template < >
 
29
    class quaternion< double >;
 
30
template < >
 
31
    class quaternion< long double >;
 
32
 
 
33
// Also has many function templates (including operators)
 
34
 
 
35
 
 
36
//  From <boost/math/octonion.hpp>  ------------------------------------------//
 
37
 
 
38
template < typename T >
 
39
    class octonion;
 
40
 
 
41
template < >
 
42
    class octonion< float >;
 
43
template < >
 
44
    class octonion< double >;
 
45
template < >
 
46
    class octonion< long double >;
 
47
 
 
48
// Also has many function templates (including operators)
 
49
 
 
50
 
 
51
//  From <boost/math/special_functions/acosh.hpp>  ---------------------------//
 
52
 
 
53
// Only has function template
 
54
 
 
55
 
 
56
//  From <boost/math/special_functions/asinh.hpp>  ---------------------------//
 
57
 
 
58
// Only has function template
 
59
 
 
60
 
 
61
//  From <boost/math/special_functions/atanh.hpp>  ---------------------------//
 
62
 
 
63
// Only has function template
 
64
 
 
65
 
 
66
//  From <boost/math/special_functions/sinc.hpp>  ----------------------------//
 
67
 
 
68
// Only has function templates
 
69
 
 
70
 
 
71
//  From <boost/math/special_functions/sinhc.hpp>  ---------------------------//
 
72
 
 
73
// Only has function templates
 
74
 
 
75
 
 
76
//  From <boost/math/common_factor.hpp>  -------------------------------------//
 
77
 
 
78
// Only #includes other headers
 
79
 
 
80
 
 
81
//  From <boost/math/common_factor_ct.hpp>  ----------------------------------//
 
82
 
 
83
template < unsigned long Value1, unsigned long Value2 >
 
84
    struct static_gcd;
 
85
template < unsigned long Value1, unsigned long Value2 >
 
86
    struct static_lcm;
 
87
 
 
88
 
 
89
//  From <boost/math/common_factor_rt.hpp>  ----------------------------------//
 
90
 
 
91
template < typename IntegerType >
 
92
    class gcd_evaluator;
 
93
template < typename IntegerType >
 
94
    class lcm_evaluator;
 
95
 
 
96
// Also has a couple of function templates
 
97
 
 
98
 
 
99
}  // namespace math
 
100
}  // namespace boost
 
101
 
 
102
 
 
103
#endif  // BOOST_MATH_FWD_HPP