thibaultmarin / hpp2plantuml

Convert C++ header files to PlantUML
MIT License
223 stars 35 forks source link

Generate PlantUML for headers in multple directories #21

Closed swarajsomala closed 2 years ago

swarajsomala commented 2 years ago

Hello There,

It's a great tool to automate the generation of UML class diagrams from headers. Currently, in my project, I have several directories and each contains headers in the below format.

├── App
 |   └── App.h
├── Demo
│   └── Runtime.h
└── client
    ├── client.h
    ├── client_app.h

Is there any way to provide the root directory path to generate the PlantUML code?

thibaultmarin commented 2 years ago

Running hpp2plantuml -i "*/*.h" from the parent folder seems to work for me (we use glob to list files, see the glob documentation for details).