31 lines
648 B
Plaintext
31 lines
648 B
Plaintext
compilation_database_dir: build
|
|
output_directory: puml
|
|
diagrams:
|
|
Platform:
|
|
type: class
|
|
glob:
|
|
- src/*.cpp
|
|
- src/modules/*.cpp
|
|
using_namespace: platform
|
|
include:
|
|
namespaces:
|
|
- bayesnet
|
|
- platform
|
|
plantuml:
|
|
after:
|
|
- "note left of {{ alias(\"MyProjectMain\") }}: Main class of myproject library."
|
|
sequence:
|
|
type: sequence
|
|
glob:
|
|
- src/b_main.cpp
|
|
combine_free_functions_into_file_participants: true
|
|
using_namespace:
|
|
- std
|
|
- bayesnet
|
|
- platform
|
|
include:
|
|
paths:
|
|
- src
|
|
start_from:
|
|
- function: main(int,const char **)
|