X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Faudio-element.cc;h=cd3f7c8d18335cd1dcc5fa549fbd4fa80add96eb;hb=c2816c1a29fe241446cc606043d239c82c689ab7;hp=bffe351af4fe60fa0b79d69ae8638fbec18a612d;hpb=1cf3d59c1559fb9774c4c1c8cae155cfe54a927c;p=lilypond.git diff --git a/lily/audio-element.cc b/lily/audio-element.cc index bffe351af4..cd3f7c8d18 100644 --- a/lily/audio-element.cc +++ b/lily/audio-element.cc @@ -1,31 +1,35 @@ /* - audio-element.cc -- implement Audio_element + This file is part of LilyPond, the GNU music typesetter. - source file of the GNU LilyPond music typesetter + Copyright (C) 1997--2011 Han-Wen Nienhuys - (c) 1997--1998 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ +#include #include "audio-element.hh" -#include "debug.hh" - -IMPLEMENT_IS_TYPE_B(Audio_element); -Audio_element::~Audio_element() +Audio_element::Audio_element () { } -void -Audio_element::print () const +Audio_element::~Audio_element () { -#ifndef NPRINT - DOUT << name () << "{ "; - do_print (); - DOUT << "}"; -#endif } -void -Audio_element::do_print ()const +char const * +Audio_element::name () const { + return this->class_name (); }