Ticket #17663: basic.pic

File basic.pic, 338 bytes (added by harry.weppner@…, 15 years ago)

Basic pic file used as input for pic2plot

Line 
1# Define the objects
2object(O,"o:Toolkit");
3placeholder_object(P);
4step();
5
6# Activation and messages
7active(O);
8message(O,O,"callbackLoop()");
9create_message(O,P,"p:Peer");
10message(O,P,"handleExpose()");
11active(P);
12return_message(P,O,"");
13inactive(P);
14destroy_message(O,P);
15inactive(O);
16
17# Complete the lifeline of O
18step();
19complete(O);