Added cli options for cppidx generator

This commit is contained in:
Bartek Kryza
2023-03-13 00:30:04 +01:00
parent 4ffb36fa9e
commit bffe9913aa
11 changed files with 631 additions and 364 deletions

View File

@@ -23,6 +23,12 @@
namespace clanguml::common::generators {
/**
* This is a helper class for generating nested groups of elements
* in the diagrams, e.g. PlantUML `together` option.
*
* @tparam T Type of stack elements
*/
template <typename T> class nested_element_stack {
public:
nested_element_stack(bool is_flat)