gitextract_2ljvjjz2/ ├── .github/ │ └── workflows/ │ └── gtest.yml ├── .gitignore ├── README.md ├── conanfile.py ├── include/ │ ├── flxml/ │ │ ├── generator.h │ │ ├── iterators.h │ │ ├── predicates.h │ │ ├── print.h │ │ ├── tables.h │ │ ├── utils.h │ │ └── wrappers.h │ ├── flxml.h │ ├── rapidxml.hpp │ └── rapidxml_print.hpp ├── license.txt ├── manual.html └── test/ ├── CMakeLists.txt ├── conanfile.py ├── sonar-project.properties └── src/ ├── iterators.cpp ├── low-level-parse.cpp ├── main.cc ├── manipulations.cpp ├── parse-simple.cpp ├── perf.cpp ├── round-trips.cpp └── xpath.cpp