]> git.donarmstrong.com Git - lilypond.git/blobdiff - lib/include/duration.hh
patch::: 1.3.14.hwn1
[lilypond.git] / lib / include / duration.hh
index 28580b63af32f93c5a0a56211c89a3b107700dbb..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 100644 (file)
@@ -1,44 +0,0 @@
-/*
-  duration.hh -- declare Duration
-  
-  source file of the LilyPond music typesetter
-
-  (c)  1997--1999 Jan Nieuwenhuizen <janneke@gnu.org>
-
-*/
-
-// split into 4?
-
-#ifndef DURATION_HH
-#define DURATION_HH
-
-#include "fproto.hh"
-#include "rational.hh"
-#include "plet.hh"
-
-/**
-   Handle "musical" durations. This means: balltype 1,2,4,etc. and dots.
-   
-  (dur)
-  */
-struct Duration {
-  Duration ();
-  /// is the "plet factor" of this note != 1 ?
-  bool plet_b ();
-  String str () const;
-  void set_plet (int,int );
-  void compress (Rational);
-
-  static bool duration_type_b (int t);
-  void set_ticks (int ticks_i );
-  Rational length_mom () const ;
-  static int division_1_i_s;
-
-  /// Logarithm of the base duration.
-  int durlog_i_;
-  int dots_i_;
-  Plet plet_;
-  int ticks_i_;
-};
-#endif // DURATION_HH
-