]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/context-mod.hh
unsmob_pitch -> Pitch::unsmob and related
[lilypond.git] / lily / include / context-mod.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2010--2014 Reinhold Kainhofer <reinhold@kainhofer.com>
5
6   LilyPond is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   LilyPond is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 /**
21  * context-mod.hh
22  * Implement a structure to store context modifications to be inserted
23  * at some later point
24  */
25
26 #ifndef CONTEXT_MOD_HH
27 #define CONTEXT_MOD_HH
28
29 #include "lily-proto.hh"
30 #include "smobs.hh"
31 #include "virtual-methods.hh"
32
33 /*
34   Modifications for an interpretation context as given in the
35   input.
36 */
37 struct Context_mod
38 {
39 private:
40   SCM mods_;
41 public:
42   void add_context_mod (SCM);
43   void add_context_mods (SCM);
44
45   SCM get_mods () const;
46
47   Context_mod ();
48   Context_mod (Context_mod const &);
49   Context_mod (SCM mod_list);
50   DECLARE_SIMPLE_SMOBS (Context_mod);
51 };
52
53
54 #endif /* CONTEXT_MOD_HH */
55