Skip to content

Commit 47b07e8

Browse files
Improved Readme
1 parent 484d8ca commit 47b07e8

File tree

3 files changed

+15
-0
lines changed

3 files changed

+15
-0
lines changed

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ TEST_CASE("Parsing hello world program")
8888
8989
**This example is a real one and is part of actual unit test of CppParser**.
9090
91+
For AST traversing, see the [CppWriter](cppwriter), that uses the generated AST to create files.
92+
9193
## Building CppParser
9294
9395
### Get the source

cppparser/src/README.mdpp

+2
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ Below is the program written as unit-test for validating the correctness of gene
3434

3535
**This example is a real one and is part of actual unit test of CppParser**.
3636

37+
For AST traversing, see the [CppWriter](cppwriter), that uses the generated AST to create files.
38+
3739
## Building CppParser
3840

3941
### Get the source

cppwriter/README.md

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
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+

0 commit comments

Comments
 (0)