]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/atom.hh
3c23232be77ff37ba7eb2c99c9c46283576d3b6d
[lilypond.git] / lily / include / atom.hh
1 /*
2   atom.hh -- declare Atom
3
4   source file of the GNU LilyPond music typesetter
5
6   (c)  1997--1999 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9 #ifndef ATOM_HH
10 #define ATOM_HH
11
12 #include "protected-scm.hh"
13 #include "string.hh"
14 #include "box.hh"
15 #include "lily-proto.hh"
16 #include "lily-guile.hh"
17
18 class Atom {
19 public:
20   Atom (SCM s);
21   Offset off_;
22   /*
23     SCM expression that (when evaluated) gives a TeX string
24 representing a musical notation symbol.  */
25   Protected_scm func_;
26   Protected_scm font_;
27 };
28
29
30 #endif