mirror of
https://github.com/OPM/ResInsight.git
synced 2024-12-29 10:21:54 -06:00
24 lines
348 B
Plaintext
24 lines
348 B
Plaintext
@startuml
|
|
|
|
|
|
|
|
RimView --> RivWellPathCollectionPartMgr
|
|
|
|
RivWellPathCollectionPartMgr -* "N" RivWellPathPartMgr
|
|
|
|
class RivWellPathPartMgr {
|
|
RimWellPath* m_wellPath
|
|
}
|
|
|
|
class RimWellPath {
|
|
RimWellPathFractureCollection m_fractureCollection;
|
|
}
|
|
|
|
class RimWellPathFractureCollection {
|
|
caf::PdmChildArrayField<RimWellPathFracture*> fractures;
|
|
}
|
|
|
|
|
|
|
|
@enduml
|