blob: 9ce4d2bf4e475425a7757cc573e9955669ccaa64 (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#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;
void print() const;
};
|