Last active
April 22, 2020 14:11
-
-
Save ajelenak/f451c471a0067490fbbdb07c5d340b9b to your computer and use it in GitHub Desktop.
UML diagram of the HDF5 software components
This file contains hidden or 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
@startuml HDF5 Universe | |
title HDF5 Universe | |
together { | |
folder "Abstract\nData Model" as ADM | |
folder "Programming\nModel" as PM | |
folder Library as L | |
} | |
' Define package connections | |
ADM <- PM : manipulates | |
PM <- L : implements | |
together { | |
folder "Storage Format" as SF | |
folder "Storage Model" as SM | |
} | |
SM <- SF : implements | |
L <-down-> SF : " data\n transfer" | |
PM -down-> SM : "data \nlayout " | |
ADM <-down- SM : "represents" | |
() API | |
API - L | |
@enduml |
Author
ajelenak
commented
Apr 21, 2020
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment