]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/include/music.hh
release: 0.1.13
[lilypond.git] / lily / include / music.hh
index a267fc04eb08e0341c3c67b45b1d949397924d6c..767c109a535d78952aedcef851e98df25ab62a7a 100644 (file)
   */
 class Music:public Input {
 public:
-    Music_list * parent_music_l_;
+  Music_list * parent_music_l_;
     
-    /** The kind of iterator needed to walk this music.  This doesn't
-      make sense for simple (ie non-list) music, but it does no harm
-      here. Yes, it did harm Music_list: you can forget to copy it.
+  /** The kind of iterator needed to walk this music.  This doesn't
+    make sense for simple (ie non-list) music, but it does no harm
+    here. Yes, it did harm Music_list: you can forget to copy it.
       
-      */
-    String type_str_;
-
-    /// what name (or look for this name)
-    String id_str_;    
-
-    virtual MInterval time_int() const;
-    virtual ~Music(){}
-    void print() const;
-    virtual void transpose (Melodic_req const *);
-    virtual void translate (Moment dt);
-    VIRTUAL_COPY_CONS(Music,Music);
-    DECLARE_MY_RUNTIME_TYPEINFO;
-    Music();
+    */
+  String translator_type_str_;
+
+  /// what name (or look for this name)
+  String translator_id_str_;    
+
+  virtual MInterval time_int() const;
+  virtual ~Music(){}
+  void print() const;
+  virtual void transpose (Melodic_req const *);
+  virtual void translate (Moment dt);
+  VIRTUAL_COPY_CONS(Music,Music);
+  DECLARE_MY_RUNTIME_TYPEINFO;
+  Music();
 protected:
-    virtual void do_print() const;
-  
+  virtual void do_print() const;
 };
 
 #endif // MUSIC_HH