File:Callback-notitle.svg

Summary

Description This simple diagram made with Graphviz shows a callback function, including the application main program, a software library function and the callback function.
Date
Source Own work
Author TuukkaH
SVG development
InfoField
 
The SVG code is valid.
 
This chart was created with Graphviz.
Category:Valid SVG created with Graphviz code#Callback-notitle.svg
 
Category:Translation possible - SVGThis file uses embedded text that can be easily translated using a text editor.
Source code
InfoField

Command line code

<callback.dot dot -Tsvg ┃ sed -e 's/<title>.*<\/title>//' >callback-notitle.svg

Data

Graphiz code
digraph Pipeline {
        rankdir=LR
        labeljust="l"
        style=filled
        color=lightgrey
        node [style=filled,fillcolor=white,color=white]
        subgraph clusterApplication {
                label="Application program"
                program [label="Main program",shape=rect]
                callback [label="Callback function"]
# invisible content to match layout with intention:
                edge [style=invis]
                node [style=invis,label="",width=0.01,height=0.01]
                program -> libpad
                libpad -> callback
        }

        subgraph clusterLibrary {
                margin="5,5"
                label="Software library"
                labelloc=b
                node [color=blue,fontcolor=blue]
                function [label="Library function"]
        }

        program -> function [label="calls"]
        function -> callback [label="calls"]
}

Licensing

Public domain I, the copyright holder of this work, release this work into the public domain. This applies worldwide.
In some countries this may not be legally possible; if so:
I grant anyone the right to use this work for any purpose, without any conditions, unless such conditions are required by law.
Category:Self-published work#Callback-notitle.svgCategory:PD-self#Callback-notitle.svg Category:Computer science flowcharts Category:SVG flow charts Category:Images with Graphviz source code
Category:Computer science flowcharts Category:Images with Graphviz source code Category:PD-self Category:SVG flow charts Category:Self-published work Category:Translation possible - SVG Category:Valid SVG created with Graphviz code