repo.or.cz
/
lilypond.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
lilypond-0.0.5
[lilypond.git]
/
tex.hh
blob
2f60630fd597760965e02386dceed1aafea7f60a
1
#ifndef TEX_HH
2
#define TEX_HH
3
4
#include
"string.hh"
5
#include
"boxes.hh"
6
7
String
8
substitute_args
(
String source
,
svec
<
String
>
args
);
9
/**
10
this structure provides a simple macro mechanism:
11
12
if source == "tex%bla%", then
13
eval({"X","Y"}) == "texXblaY"
14
*/
15
16
/// #h# is in points
17
String
vstrut
(
Real h
);
18
19
20
#endif