2 This file is part of LilyPond, the GNU music typesetter.
4 Copyright (C) 2007--2014 Nicolas Sceaux <nicolas.sceaux@free.fr>
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.
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.
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/>.
20 #include "page-marker.hh"
22 Page_marker::Page_marker ()
25 permission_ = SCM_EOL;
30 Page_marker::Page_marker (Page_marker const &src)
32 symbol_ = src.symbol_;
33 permission_ = src.permission_;
38 Page_marker::~Page_marker ()
42 const char Page_marker::type_p_name_[] = "ly:page-marker?";
45 Page_marker::mark_smob (SCM smob)
47 Page_marker *pm = (Page_marker *) SCM_CELL_WORD_1 (smob);
48 scm_gc_mark (pm->symbol_);
49 scm_gc_mark (pm->permission_);
50 scm_gc_mark (pm->label_);
55 Page_marker::print_smob (SCM smob, SCM port, scm_print_state *)
57 Page_marker *pm = (Page_marker *) SCM_CELL_WORD_1 (smob);
59 scm_puts ("#<Page_marker>", port);
64 Page_marker::permission_symbol ()
70 Page_marker::permission_value ()
82 Page_marker::set_permission (SCM symbol, SCM permission)
85 permission_ = permission;
89 Page_marker::set_label (SCM label)