]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/scale.hh
Run grand replace for 2015.
[lilypond.git] / lily / include / scale.hh
index 760e91b5b8070fd35d5305af06d784adbe379b06..19cd175c797fd7d9e63a5ac79dbb8c73696c1fa0 100644 (file)
@@ -1,7 +1,7 @@
 /*
   This file is part of LilyPond, the GNU music typesetter.
 
-  Copyright (C) 2006--2010 Han-Wen Nienhuys <hanwen@lilypond.org>
+  Copyright (C) 2006--2015 Han-Wen Nienhuys <hanwen@lilypond.org>
 
   LilyPond is free software: you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
 #include "rational.hh"
 #include "std-vector.hh"
 
-struct Scale
+struct Scale : public Smob<Scale>
 {
-public:
-  Scale (vector<Rational> const&);
-  Scale (Scale const&);
+  virtual ~Scale ();
+  Scale (vector<Rational> 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<Rational> step_tones_;
@@ -44,5 +43,3 @@ private:
 extern Scale *default_global_scale;
 
 #endif /* SCALE_HH */
-
-