]> git.donarmstrong.com Git - lilypond.git/blob - lily/part-combine-part-iterator.cc
Issue 4550 (1/2) Avoid "using namespace std;" in included files
[lilypond.git] / lily / part-combine-part-iterator.cc
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2015 Daniel Eble <dan@faithful.be>
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 #include "change-sequence-iterator.hh"
21 #include "context.hh"
22
23 using std::string;
24
25 class Part_combine_part_iterator : public Change_sequence_iterator
26 {
27 public:
28   DECLARE_SCHEME_CALLBACK (constructor, ());
29   Part_combine_part_iterator () {}
30
31 private:
32   virtual void change_to (const string &id);
33   Context *find_voice(const string &id);
34 };
35
36 void
37 Part_combine_part_iterator::change_to (const string &id)
38 {
39   Context *voice = find_voice (id);
40   if (voice)
41     substitute_outlet (get_outlet (), voice);
42   else
43     {
44       string s = "can not find Voice context: ";
45       s += id;
46       programming_error (s);
47     }
48 }
49
50 Context *
51 Part_combine_part_iterator::find_voice (const string &id)
52 {
53   // Find a Voice among the siblings of the current outlet.  (Well, this might
54   // also find a sibling's descendant, but that should not be a problem.)
55   Context *c = get_outlet ()->get_parent_context ();
56   if (c)
57     return find_context_below (c, ly_symbol2scm("Voice"), id);
58   programming_error ("no parent context");
59   return 0;
60 }
61
62 IMPLEMENT_CTOR_CALLBACK (Part_combine_part_iterator);