-
-
Notifications
You must be signed in to change notification settings - Fork 426
/
Copy pathchaining.puml
61 lines (45 loc) · 1.56 KB
/
chaining.puml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
@startuml
!theme black-knight
package "Interfaces" {
interface IStructuredType {
+StructureType StructureType()
}
interface IChainable {
+BaseInStructure* PNext { get; set; }
}
interface IExtendsChain<TChain> {
}
interface IChainStart {
}
IStructuredType <|-- IChainable
IChainable <|-- IExtendsChain
IChainable <|-- IChainStart
}
package "Structures" {
class BaseInStructure implements IChainable {
+StructureType SType
+BaseInStructure* PNext
+BaseInStructure* IChainable.PNext { get; set; }
+StructureType IStructureType.StructureType()
}
class PhysicalDeviceFeatures2 implements IChainStart {
+StructureType SType
+BaseInStructure* PNext
+PhysicalDeviceFeatures Features
+BaseInStructure* IChainable.PNext { get; set; }
+StructureType IStructureType.StructureType()
}
IExtendsChain <|.. PhysicalDeviceFeatures2
class PhysicalDeviceVariablePointersFeatures implements IExtendsChain {
+StructureType SType
+BaseInStructure* PNext
+Bool32 VariablePointersStorageBuffer
+Bool32 VariablePointers
+BaseInStructure* IChainable.PNext { get; set; }
+StructureType IStructureType.StructureType()
}
IExtendsChain <|.. PhysicalDeviceVariablePointersFeatures
IExtendsChain <|.. PhysicalDeviceVariablePointersFeatures
IExtendsChain <|.. PhysicalDeviceVariablePointersFeatures
}
@enduml