blob: 24bd2c7abb8afe4f92fe78e5839893dd144b6b8a (
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
|
/*
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();
Staff_sym_register();
NAME_MEMBERS(Staff_sym_register);
virtual void pre_move_processing();
virtual void post_move_processing();
};
#endif // STAFF_SYM_REG_HH
|