home *** CD-ROM | disk | FTP | other *** search
- {copyright 1986 by Herb Barad}
- {Protocol is a program to produce a PICT representation of a class}
- {hierarchy from a textual description.}
- {parts from Flow MacApp sample - copyright 1986 by Apple Computer}
-
- PROGRAM Protocol;
-
- USES
- MemTypes, QuickDraw, OSIntf, ToolIntf,
-
- UObject,
- UList,
- UMacApp,
- UPrinting,
- UTEView,
-
- UProtocolChart,
- UProtocol;
-
- VAR gProtocolApplication: TProtocolApplication;
-
- BEGIN
- InitToolbox(3);
- InitPrinting;
-
- New(gProtocolApplication);
- gProtocolApplication.IProtocolApplication;
- gProtocolApplication.Run;
- END.
-