]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/duration.hh
* make/lilypond-vars.make (PYTHONPATH): Add python's outdir to
[lilypond.git] / lily / include / duration.hh
index 654db0db8b5b3f3ed4873916212d5f237e00b174..c6c194d2269be5f02bc3026a80c134234cd433cb 100644 (file)
@@ -22,10 +22,10 @@ public:
   
   Duration ();
   Duration (int, int);
-  String str () const;
+  String string () const;
 
   Duration compressed (Rational) const;
-  Rational length_mom () const ;
+  Rational get_length () const ;
   Rational factor () const { return factor_; }
   int duration_log ()const;
   int dot_count () const;
@@ -38,16 +38,15 @@ public:
 
 private:
     /// Logarithm of the base duration.
-  int durlog_i_;
-  int dots_i_;
+  int durlog_;
+  int dots_;
 
   Rational factor_;
 };
 
 #include "compare.hh"
 INSTANTIATE_COMPARE (Duration, Duration::compare);
-DECLARE_UNSMOB(Duration,duration);
-
+DECLARE_UNSMOB (Duration, duration);
 
 #endif // DURATION_HH