Files
python-gpiozero/docs/images/other_device_hierarchy.dot
Dave Jones 576fced6c4 Update all hierarchy charts in the docs
Added notes on how the abstracts are represented, ensured all the class
hierarchies were up to date, and changed the orientation so the classes
are actually readable in the big chart.
2017-06-21 17:01:13 +01:00

21 lines
466 B
Plaintext

/* vim: set et sw=4 sts=4: */
digraph classes {
graph [rankdir=RL];
node [shape=rect, style=filled, fontname=Sans, fontsize=10];
edge [];
/* Abstract classes */
node [color="#9ec6e0", fontcolor="#000000"]
Device;
InternalDevice;
/* Concrete classes */
node [color="#2980b9", fontcolor="#ffffff"];
InternalDevice->Device;
TimeOfDay->InternalDevice;
PingServer->InternalDevice;
CPUTemperature->InternalDevice;
}