forked from ros2/ros2_documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Moved mermaid graphics to a new file
Signed-off-by: Gonzalo de Pedro <[email protected]>
- Loading branch information
1 parent
52344ab
commit 3573966
Showing
3 changed files
with
31 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
sequenceDiagram | ||
participant project_with_rosidl_files | ||
participant rosidl_generate_interfaces | ||
participant rosidl_create_type_descriptions_extensions_HOOK | ||
participant rosidl_generate_idl_interfaces_HOOK | ||
participant rosidl_write_generator_arguments_extensions_HOOK | ||
participant generate_arguments_file | ||
participant rosidl_generator | ||
project_with_rosidl_files->>rosidl_generate_interfaces: path_to_idl_files | ||
loop ForEach rosidl_create_type_descriptions_extensions Hook | ||
rosidl_generate_interfaces->>rosidl_create_type_descriptions_extensions_HOOK: path_to_idl_files, parameters | ||
end | ||
loop ForEach rosidl_write_generator_arguments_extensions Hook | ||
rosidl_generate_interfaces->>rosidl_write_generator_arguments_extensions_HOOK: path_to_idl_files, parameters | ||
activate generate_arguments_file | ||
rosidl_write_generator_arguments_extensions_HOOK->>generate_arguments_file: path_to_idl_files, parameters | ||
generate_arguments_file->>rosidl_write_generator_arguments_extensions_HOOK: arguments_file | ||
deactivate generate_arguments_file | ||
rosidl_write_generator_arguments_extensions_HOOK->>rosidl_generate_interfaces: arguments_file | ||
end | ||
rosidl_generate_interfaces>>rosidl_generator: [arguments_files] | ||
loop ForEach rosidl_generate_idl_interfaces Hook | ||
rosidl_generate_interfaces->>rosidl_generate_idl_interfaces_HOOK: generated_files | ||
end |