]> git.donarmstrong.com Git - lilypond.git/blob - lily/include/bar-grav.hh
release: 0.0.73pre
[lilypond.git] / lily / include / bar-grav.hh
1 /*
2   bar-grav.hh -- declare Bar_engraver
3
4   source file of the GNU LilyPond music typesetter
5
6   (c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
7 */
8
9
10 #ifndef BARGRAV_HH
11 #define BARGRAV_HH
12 #include "engraver.hh"
13
14 /**
15   generate bars. Either user ("|:"), or default (new measure)
16   */
17 class Bar_engraver : public Engraver {
18     Bar_req * bar_req_l_;
19     Bar * bar_p_;
20 public:
21     Bar_engraver();
22     NAME_MEMBERS();
23
24      
25 protected:
26     virtual bool do_try_request(Request *req_l);
27     virtual void do_process_requests();
28     virtual void do_pre_move_processing();
29     virtual void do_post_move_processing();
30 };
31
32 #endif // BARGRAV_HH