]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.67
authorfred <fred>
Sun, 24 Mar 2002 19:45:08 +0000 (19:45 +0000)
committerfred <fred>
Sun, 24 Mar 2002 19:45:08 +0000 (19:45 +0000)
21 files changed:
lily/include/register-group.hh
lily/include/rest-collision-reg.hh
lily/include/rest-collision.hh
lily/include/rest-column.hh
lily/include/scoreline.hh
lily/include/script-column.hh
lily/include/script-reg.hh
lily/include/slur-reg.hh
lily/include/spanner.hh
lily/include/staff-regs.hh
lily/include/staff-sym-reg.hh
lily/include/staff-sym.hh
lily/include/staffline.hh
lily/include/stem-beam-reg.hh
lily/include/super-elem.hh
lily/include/swallow-reg.hh
lily/include/text-reg.hh
lily/include/tie-reg.hh
lily/include/tie.hh
lily/include/voice-group-regs.hh
lily/include/voice-regs.hh

index 5e91ae4621137ea659bd9df79a0aee57febc4cca..9d13c292f9680cc379e460e145eab152c84e0fa5 100644 (file)
@@ -33,7 +33,7 @@ public:
      */
     virtual void terminate_register(Request_register * reg_l);
     
-   NAME_MEMBERS(Register_group_register);
+   NAME_MEMBERS();
     
     /**
       Remove #reg_l# from the list, and return it.
index 39b0b2d10e5595c1c9f030241466ad0de58164f6..a1e13957351973723b5b537a57c25eaae421499b 100644 (file)
@@ -21,6 +21,6 @@ protected:
     virtual void pre_move_processing();
 public:
     Rest_collision_register();
-    NAME_MEMBERS(Rest_collision_register);
+    NAME_MEMBERS();
 };
 #endif // REST_COLLISION_REG_HH
index d470e4178e265bdbfdbb0c0d7a2d37b933a95732..8482d66882d15900bd1f6490bb6e4dd27920d33f 100644 (file)
@@ -19,7 +19,7 @@ class Rest_collision : public Item {
 public:
     void add(Rest_column*);
     void add(Collision*);
-    NAME_MEMBERS(Rest_collision);
+    NAME_MEMBERS();
 protected:
     virtual void do_post_processing();
     virtual void do_substitute_dependency(Score_elem*,Score_elem*);
index 803e00a294035a4d3b30b0db72298f47da2c4794..4e54241d019a5d842087913ec5dd1ad6aa4a5910 100644 (file)
@@ -21,7 +21,7 @@ class Rest_column : public Script_column {
 public:
     int dir_i_;
     void add(Note_head *);
-    NAME_MEMBERS(Rest_column);
+    NAME_MEMBERS();
     void translate_y(Real dy);
     Rest_column();
 protected:
index 688d95b5642ee556b873f207f4db4c31e66dfdcf..1aa02fa7dd8b778d59f72a3f974b0a1d6bff18cf 100644 (file)
@@ -20,7 +20,7 @@ public:
     virtual String TeX_string() const;    
     
     /* *************** */
-    NAME_MEMBERS(Line_of_score);
+    NAME_MEMBERS();
     Line_of_score();
     
     void add_line(Spanner_elem_group *);
index 22564d480524dab4153aab693a616d945650f3e3..3b94feda7a926677fafddee4df78530586b583ac 100644 (file)
@@ -24,7 +24,7 @@ protected:
 public:
     Link_array<Script> script_l_arr_;
     Link_array<Item> support_l_arr_;
-    NAME_MEMBERS(Script_column);
+    NAME_MEMBERS();
    
     void add(Script *);
     void add_support(Item*);
index d5a860f378e45139b281c545babfd8e7f3a9ebdf..7fa5294814d56a7e1ea9eed20431251469695c62 100644 (file)
@@ -18,7 +18,7 @@ class Script_register : public Request_register {
     /* *************** */
     bool acceptable_elem_b(Score_elem*);
 public:
-    NAME_MEMBERS(Script_register);
+    NAME_MEMBERS();
     Script_register();
 protected:
     virtual bool try_request(Request*);
index 9ac27e591680d1d9f1377e05004ae3462740c248..a18d7234b66641d75d784ff7da1ff0bf27b47f88 100644 (file)
@@ -27,7 +27,8 @@ protected:
     virtual void pre_move_processing();
     virtual void post_move_processing();
 public:
-    NAME_MEMBERS(Slur_register);
+    Slur_reg();
+    NAME_MEMBERS();
 };
 
 #endif // SLURREG_HH
index 074a555da2c7ab2e02dab150b57b2a6d1f4f4805..84c85f3e98f3ca6d43d3e1346950a84bd19829be 100644 (file)
@@ -38,7 +38,7 @@ public:
     PCol *left_col_l_, *right_col_l_;
     
     /* *************** */
-    NAME_MEMBERS(Spanner);
+    NAME_MEMBERS();
     virtual Spanner* spanner() { return this; }    
     Spanner();
     bool broken_b() const;
index 34138fadf215aa0c79f7b77fc3f0f3155ebb7110..8f7bba348536db18b765590a93e45fac5ad37c40 100644 (file)
@@ -29,7 +29,7 @@ protected:
 public:
     
     /* *************** */
-    NAME_MEMBERS(Staff_registers);
+    NAME_MEMBERS();
     void change_group(Group_change_req * greq_l,
                      Voice_registers *voice_regs_l,
                      Voice_group_registers * old_group);
index b4c6f6617382ac6ecc846b82b737c8eb7b7f40b7..06303c0aa4a9eba5a8e2f574f8c3b6bd9c6b03d3 100644 (file)
@@ -20,7 +20,7 @@ class Staff_sym_register : public Request_register {
     Moment last_mom_;
 public:
     Staff_sym_register();
-    NAME_MEMBERS(Staff_sym_register);
+    NAME_MEMBERS();
 protected:
     virtual void process_requests();
     ~Staff_sym_register();
index c3a49dfc57a6620348efa23cb3c88f040623e7de..dc50a37e0aac6347a0350f41158def8cecf41acd 100644 (file)
@@ -23,7 +23,7 @@ public:
 
 
     void set_extent(PCol* p1, PCol* p2);
-    NAME_MEMBERS(Staff_symbol);
+    NAME_MEMBERS();
     Staff_symbol(int lines);
     Real inter_note_f()const;
     int steps_i()const;
index f059a1418fe59f2fbfee5c2c79457f96363188b0..9d9174e6889379d3083ff90676b0f0762b13b388 100644 (file)
@@ -14,7 +14,7 @@ struct Line_of_staff : public Spanner_elem_group{
 
     SPANNER_CLONE(Line_of_staff)
 public:
-    NAME_MEMBERS(Line_of_staff);
+    NAME_MEMBERS();
 
     /* *************** */
     /** 
index 77729ed1ac4dd368fad0e7d9dcc57a3e3ff93bc0..f6b1b5317eacc8d1527ca5ff899bb90dd7a25814 100644 (file)
@@ -25,7 +25,7 @@ class Stem_beam_register : public Request_register {
     int default_dir_i_;
 public:
     /* *************** */
-    NAME_MEMBERS(Stem_beam_register);
+    NAME_MEMBERS();
     Stem_beam_register();
 
 protected:
index db813471482083fb6d16244bfeaf553e6f6d8ede..e51e1181df1b73a893bc4f26d859f47847841bc0 100644 (file)
@@ -26,7 +26,7 @@ protected:
     virtual void handle_broken_dependencies();
 
     virtual void do_add_processing();
-    NAME_MEMBERS(Super_elem);
+    NAME_MEMBERS();
 };
 
 #endif // SUPER_ELEM_HH
index 2f110866eff2c912d706dd11a25ae1ea666ae8ea..391d0b6472975cd715c616ed3402fd046045229f 100644 (file)
@@ -21,6 +21,6 @@ protected:
     bool acceptable_request_b(Request*) const;
     bool try_request(Request*) ;
 public:
-    NAME_MEMBERS(Swallow_register);
+    NAME_MEMBERS();
 };
 #endif // SWALLOW_REG_HH
index 3bab1d56393eb3fd575b3e2eaa14d9d81c46d939..c1f4929044e28725a36ce99bbc6cb33bea2bec3a 100644 (file)
@@ -23,7 +23,7 @@ protected:
     virtual void acknowledge_element(Score_elem_info);
 public:
     Text_register();
-    NAME_MEMBERS(Text_register);
+    NAME_MEMBERS();
 };
 
 #endif // TEXTREG_HH
index 9ad241ada1fe28a614ac73ceb890cb3af073996f..eb4772b50038f4d7422df88e3327d02d355f302c 100644 (file)
@@ -34,7 +34,7 @@ protected:
     virtual void set_feature(Feature);
 public:
     Tie_register();
-    NAME_MEMBERS(Tie_register);
+    NAME_MEMBERS();
 };
 
 #endif // TIE_REG_HH
index 81c356dd7fe7346a48e832c7e2e51114c26e20c9..dc3b812f5ede3a2c143a34a8c7aa2c30ce196150 100644 (file)
@@ -28,7 +28,7 @@ public:
     void set_head(int, Note_head*head_l);
 
     Tie();
-    NAME_MEMBERS(Tie);
+    NAME_MEMBERS();
     SPANNER_CLONE(Tie)
 };
 #endif // TIE_HH
index 243965a1919996b30d57bf9cbb57b859543fd728..187b6c147e1485ce0b9ce2dd27bcb8daded59e7c 100644 (file)
@@ -36,7 +36,7 @@ public:
     Array<Voice_registers*> voice_reg_l_arr_;
     /* *************** */
     
-    NAME_MEMBERS(Voice_group_registers);
+    NAME_MEMBERS();
     static bool static_acceptable_request_b(Request*);
     virtual void add(Request_register*);
     Voice_group_registers(String id, Input_register const *);
index c6e75b7505273194ca09125a3b1caaf1cecc4867..5f99de381f70e9e2906d5c80daf787acf5b18f7e 100644 (file)
@@ -20,7 +20,7 @@ public:
     /* *************** */
 
     Voice_registers(Voice*, Input_register const*);
-    NAME_MEMBERS(Voice_registers);
+    NAME_MEMBERS();
 
 protected:
     virtual void pre_move_processing();