Skip to content

CodeGenManager

Julien SOYSOUVANH edited this page Aug 6, 2021 · 2 revisions

The CodeGenManager class' is the starting point for the code generation process, with the CodeGenManager::run method. Its role is to manage the generation flow by identifying the files to process and forwarding them to the FileParser and CodeGenUnit.
Just like the FileParser class, the CodeGenManager class is to use as-is (no inheritance/override required), but you must provide in the settings the files and/or directories you want to process.

Index