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
|
digraph classes {
graph [rankdir=RL];
node [shape=rect, style=filled, fontname=Sans, fontsize=10];
edge [];
/* Mixin classes */
node [color="#c69ee0", fontcolor="#000000"]
/* Abstract classes */
node [color="#9ec6e0", fontcolor="#000000"]
GPIODevice;
SmoothedInputDevice;
/* Concrete classes */
node [color="#2980b9", fontcolor="#ffffff"];
Button->DigitalInputDevice;
DigitalInputDevice->InputDevice;
DistanceSensor->SmoothedInputDevice;
InputDevice->GPIODevice;
LightSensor->SmoothedInputDevice;
LineSensor->SmoothedInputDevice;
MotionSensor->SmoothedInputDevice;
SmoothedInputDevice->InputDevice;
}
|