]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/context-mod.hh
72ad0a5e9fda69601b765fcb5f7e56d8150ba783
[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 : public Simple_smob<Context_mod>
38 {
39   SCM mark_smob ();
40   int print_smob (SCM, scm_print_state *);
41   static const char type_p_name_[];
42 private:
43   SCM mods_;
44 public:
45   void add_context_mod (SCM);
46   void add_context_mods (SCM);
47
48   SCM get_mods () const;
49
50   Context_mod ();
51   Context_mod (Context_mod const &);
52   Context_mod (SCM mod_list);
53 };
54
55
56 #endif /* CONTEXT_MOD_HH */