]> git.donarmstrong.com Git - lilypond.git/blob - paper.hh
release: 0.0.6
[lilypond.git] / paper.hh
1 #include "proto.hh"
2 #include "real.hh"
3 #include "string.hh"
4
5 struct Paperdef {
6     Lookup *lookup_;
7     String outfile;
8     Real linewidth;
9     /// how much space does a whole note take (ideally?)
10     Real whole_width;
11     
12     /****************/
13     void parse();
14     Paperdef();
15     ~Paperdef();
16     Real interline()const;
17     Real standard_height()const;
18     void print() const;
19 };
20