]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/tuple.hh
release: 1.3.50
[lilypond.git] / flower / include / tuple.hh
1 /*   
2   tuple.hh -- declare Tuple
3   
4   source file of the GNU LilyPond music typesetter
5   
6   (c) 1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7   
8  */
9
10 #ifndef TUPLET_HH
11 #define TUPLET_HH
12 #error
13
14
15 template<class T, class U>
16 struct Tuple
17 {
18   T e1_;
19   U e2_;
20
21   Tuple (T t, U u)
22     {
23       e1_ = t;
24       e2_ = u;
25     }
26   Tuple ()
27     {
28     }
29 };
30
31
32
33 #endif /* TUPLET_HH */
34