blob: e96d9b089fdde78e6b72793e0ba0bea94ee9d1a4 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#include "proto.hh"
#include "real.hh"
#include "string.hh"
struct Paperdef {
Lookup *lookup_;
String outfile;
Real linewidth;
/// how much space does a whole note take (ideally?)
Real whole_width;
/****************/
void parse();
Paperdef();
~Paperdef();
Real interline()const;
Real standard_height()const;
Real note_width() const;
void print() const;
};
|