summaryrefslogtreecommitdiff
path: root/pstaff.hh
blob: de535a6518230599223d76325ca5390a68efb171 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#ifndef PSTAFF_HH
#define PSTAFF_HH

#include "list.hh"
#include "item.hh"

/// items grouped vertically.
class PStaff {
public:
    Stretchable_symbol *stafsym;
    List<const Spanner*> spans;
    List<Item*> its;

    void add(Item*i);
    PStaff();
    virtual ~PStaff() {}
};

#endif