]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/chord-name.hh
release: 1.3.56
[lilypond.git] / lily / include / chord-name.hh
1 /*
2   chord-name.hh -- declare Chord_name
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1999--2000 Jan Nieuwenhuizen <janneke@gnu.org>
7 */
8
9 #ifndef CHORD_NAME_HH
10 #define CHORD_NAME_HH
11
12 #include "chord.hh"
13 #include "item.hh"
14 #include "molecule.hh"
15
16 /**
17    elt_properties:
18    pitches: list of musical-pitch
19    inversion(optional): musical-pitch
20    bass(optional): musical-pitch
21  */
22 class Chord_name : public Item
23 {
24 public:
25    static SCM scheme_molecule (SCM);
26   
27 VIRTUAL_COPY_CONS (Score_element);
28   Molecule ly_word2molecule (SCM scm) const;
29   Molecule ly_text2molecule (SCM scm) const;
30   Chord_name(SCM s);
31 protected:
32   virtual Molecule do_brew_molecule () const;
33
34 };
35
36 #endif // CHORD_NAME_HH