]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/time-signature.hh
release: 1.1.6
[lilypond.git] / lily / include / time-signature.hh
index 762f465b98c27cc2c627f7abf5fc7a1465bc5173..1fd90719c54711b5e2dd7ebf481c04115e4c32af 100644 (file)
@@ -6,9 +6,10 @@
 
 #ifndef METER_HH
 #define METER_HH
+
 #include "item.hh"
 #include "array.hh"
-#include "scalar.hh"
+#include "real.hh"
 
 /**
    Print a time_signature sign.
   
  */
 class Time_signature: public Item {
-  Array<Scalar> args;
+
+  
 
 protected:
   virtual Molecule*brew_molecule_p() const;
 public:
-  Time_signature (Array<Scalar> args) ;
-  DECLARE_MY_RUNTIME_TYPEINFO;
-  SCORE_ELEMENT_CLONE(Time_signature);
+  Time_signature () ;
+  Array<int> args_;
+  String time_sig_type_str_;
+  
+  
+  VIRTUAL_COPY_CONS(Score_element);
 };
 #endif // METER_HH