blob: 7ca370dd616e404c68945951330d23508e85f690 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
staff-sym-reg.hh -- declare
source file of the LilyPond music typesetter
(c) 1997 Han-Wen Nienhuys <hanwen@stack.nl>
*/
#ifndef STAFF_SYM_REG_HH
#define STAFF_SYM_REG_HH
#include "register.hh"
#include "moment.hh"
/**
Manage the staff symbol.
*/
class Staff_sym_register : public Request_register {
Staff_symbol *span_p_;
Moment last_mom_;
public:
Staff_sym_register();
NAME_MEMBERS(Staff_sym_register);
protected:
virtual void process_requests();
~Staff_sym_register();
virtual void pre_move_processing();
virtual void post_move_processing();
};
#endif // STAFF_SYM_REG_HH
|