mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-09 23:16:00 -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
|