-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.cpp
63 lines (50 loc) · 1.13 KB
/
example.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#include <iostream>
#include "str_templates.h"
StrTemplate heading()
{
StrTemplate h;
h() +
"//Copyright(2020) DFG" +
"//ss" +
"";
return h;
}
StrTemplate f2()
{
StrTemplate fun;
fun() + "1+1";
return fun;
}
StrTemplate for_body()
{
StrTemplate b;
b() +
"if (i == 0) "+
"{ "+
" f2($1); "+
" $remove_me$"+
"}";
b.replace(1, f2());
b.remove("remove_me"); // replacing by "" leaves an empty line
return b;
}
int main()
{
StrTemplate main;
main() +
"$1 "+
"int main(void) "+
"{ "+
" int x = f($2); "+
" for (int i = 0; i<x; i++) "+
" { "+
" $for_body$ "+
" } "+
"}";
main.replace(1, heading());
main.replace(2, "\"hello\""); // placeholders can be numbers
main.replace("for_body", for_body()); // or string keys
main.changeIndent4to8();
main.changeBracingAllmanToKR();
std::cout << main.text();
}