summaryrefslogtreecommitdiff
path: root/lookupsyms.hh
blob: d4e08667dbae8533192dd63280d3b6a1b45f25d0 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
  lilypond, (c) 1996 Han-Wen Nienhuys
*/
#ifndef LOOKUPSYMS_HH
#define LOOKUPSYMS_HH

#include "symbol.hh"

struct Lookup {
    static Parametric_symbol *linestaff(int n);
    static Parametric_symbol *meter(String);
    static Symbol ball(int);
    static Symbol rest(int);
    static Symbol bar(String);
    static Symbol dots(int);
};

#endif