]> git.donarmstrong.com Git - lilypond.git/blob - flower/interval.cc
* configure.in: Test for and accept lmodern if EC fonts not found.
[lilypond.git] / flower / interval.cc
1 /*
2   interval.cc -- instantiate Interval_t<Real>
3
4   source file of the Flower Library
5
6   (c) 1997--2004 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #include "interval.hh"
10
11 #include "interval.tcc"
12
13 Real
14 Interval_t<Real>::infinity () 
15 {
16   return HUGE_VAL;
17 }
18
19 String
20 Interval_t<Real>::T_to_string (Real r)
21 {
22   return ::to_string (r);
23 }
24
25
26 int
27 Interval_t<int>::infinity () 
28 {
29   return INT_MAX;
30 }
31
32 String
33 Interval_t<int>::T_to_string (int i)
34 {
35   return ::to_string (i);
36 }
37
38 template INTERVAL__INSTANTIATE (int);
39 template INTERVAL__INSTANTIATE (Real);
40
41