]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/skyline-pair.hh
Update source file headers. Fixes using standard GNU package conventions.
[lilypond.git] / lily / include / skyline-pair.hh
1 /*
2   This file is part of LilyPond, the GNU music typesetter.
3
4   Copyright (C) 2008--2009 Han-Wen Nienhuys <hanwen@lilypond.org>
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 #ifndef SKYLINE_PAIR_HH
21 #define SKYLINE_PAIR_HH
22
23 #include "skyline.hh"
24
25 class Skyline_pair
26 {
27 private:
28   Drul_array<Skyline> skylines_;
29
30   DECLARE_SIMPLE_SMOBS(Skyline_pair);
31 public:
32   Skyline_pair ();
33   Skyline_pair (vector<Box> const &boxes, Real horizon_padding, Axis a);
34   Skyline_pair (Box const &, Real horizon_padding, Axis a);
35   void raise (Real);
36   void shift (Real);
37   void insert (Box const &, Real horizon_padding, Axis);
38   void merge (Skyline_pair const &other);
39   Skyline &operator [] (Direction d);
40   Skyline const &operator [] (Direction d) const;
41   bool is_empty () const;
42   void print () const;
43   void print_points () const;
44 };
45
46 #endif /* SKYLINE_PAIR_HH */