]> git.donarmstrong.com Git - lilypond.git/blob - hdr/clef-reg.hh
partial: 0.0.39-1.jcn
[lilypond.git] / hdr / clef-reg.hh
1 /*
2   clef.hh -- part of LilyPond
3
4   (c) 1996,97 Han-Wen Nienhuys
5 */
6
7 #ifndef CLEF_HH
8 #define CLEF_HH
9
10 #include "scalar.hh"
11 #include "varray.hh"
12 #include "register.hh"
13
14 /// where is c-0 in the staff?
15 class Clef_register : public  Request_register {
16     Clef_item *clef_p_;
17     Clef_change_req * clef_req_l_;
18
19 public:
20     int c0_position_i_;
21     String clef_type_str_;
22
23     /* ************** */
24     virtual void process_requests();
25     virtual void pre_move_processing();
26     virtual void post_move_processing();
27     virtual bool try_request(Request*);
28     Clef_register();
29     NAME_MEMBERS(Clef_register);
30     void read_req(Clef_change_req*);
31     bool set_type(String);
32 };
33 #endif // CLEF_HH
34