File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ TEST_CASE("Parsing hello world program")
88
88
89
89
**This example is a real one and is part of actual unit test of CppParser**.
90
90
91
+ For AST traversing, see the [CppWriter](cppwriter), that uses the generated AST to create files.
92
+
91
93
## Building CppParser
92
94
93
95
### Get the source
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ Below is the program written as unit-test for validating the correctness of gene
34
34
35
35
**This example is a real one and is part of actual unit test of CppParser**.
36
36
37
+ For AST traversing, see the [CppWriter](cppwriter), that uses the generated AST to create files.
38
+
37
39
## Building CppParser
38
40
39
41
### Get the source
Original file line number Diff line number Diff line change
1
+ # cppwriter
2
+
3
+ ` cppwriter ` is a simple C++ code generation library.
4
+
5
+ ## Features
6
+
7
+ Creates C++ source files (including headers) from ` cppast ` .
8
+ It is mainly used for:
9
+ - As an example to show how to traverse the AST generated by the CppParser.
10
+ - Testing the CppParser library.
11
+
You can’t perform that action at this time.
0 commit comments