summaryrefslogtreecommitdiff
path: root/docs/html/images/mwc.dot
blob: da7af55c6a280f076ef2386f5cc968d4ce6fcb69 (plain)
1
2
3
4
5
6
7
8
9
10
// dot mwc.dot -Tpng -o mwc.png
digraph workspace {
  rankdir=LR;

  mwcfile [shape="cylinder" height="1" label="MWC\nFile"];
  mwc [shape="box" height="1" style="rounded" label="Make Workspace\nCreator"];
  out [shape="box" height="1" label="Workspace File\n(Makefile, sln, etc.)"];
                
  mwcfile -> mwc -> out;
}