X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Finclude%2Fscale.hh;h=7c990e503419ce7db183489fae7ce90c0074d092;hb=c6758d6d12e33779fc81218693d5650682d8a1ca;hp=7984a2d2333c224124f62ca1cd74c3b0211a0a11;hpb=bb91de5b7f8c4f753452730101c2422946067cc3;p=lilypond.git diff --git a/lily/include/scale.hh b/lily/include/scale.hh index 7984a2d233..7c990e5034 100644 --- a/lily/include/scale.hh +++ b/lily/include/scale.hh @@ -1,10 +1,20 @@ -/* - scale.hh -- declare Scale - - source file of the GNU LilyPond music typesetter - - (c) 2006--2008 Han-Wen Nienhuys - +/* + This file is part of LilyPond, the GNU music typesetter. + + Copyright (C) 2006--2015 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 . */ #ifndef SCALE_HH @@ -14,18 +24,18 @@ #include "rational.hh" #include "std-vector.hh" -struct Scale +struct Scale : public Smob { -public: - Scale (vector const&); - Scale (Scale const&); + static const char * const type_p_name_; // = 0 + virtual ~Scale (); + Scale (vector const &); + Scale (Scale const &); Rational tones_at_step (int step, int octave) const; Rational step_size (int step) const; int step_count () const; int normalize_step (int step) const; - DECLARE_SMOBS (Scale); private: vector step_tones_; @@ -34,5 +44,3 @@ private: extern Scale *default_global_scale; #endif /* SCALE_HH */ - -