]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/tuple.hh
release: 1.1.67
[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
13
14 template<class T, class U>
15 struct Tuple
16 {
17   T e1_;
18   U e2_;
19
20   Tuple (T t, U u)
21     {
22       e1_ = t;
23       e2_ = u;
24     }
25   Tuple ()
26     {
27     }
28 };
29
30
31
32 #endif /* TUPLET_HH */
33