home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / answers / Objective-C / classes < prev    next >
Internet Message Format  |  1993-12-20  |  23KB

  1. Path: senator-bedfellow.mit.edu!bloom-beacon.mit.edu!xlink.net!zib-berlin.de!netmbx.de!Germany.EU.net!EU.net!sun4nl!tuegate.tue.nl!krait.es.ele.tue.nl!tiggr
  2. From: tiggr@es.ele.tue.nl (Tiggr)
  3. Newsgroups: comp.lang.objective-c,comp.answers,news.answers
  4. Subject: comp.lang.objective-c FAQ, part 2/3: ClassWare Listing
  5. Supersedes: <classes_753551527@es.ele.tue.nl>
  6. Followup-To: comp.lang.objective-c
  7. Date: 20 Dec 1993 16:26:19 GMT
  8. Organization: Eindhoven University of Technology, the Netherlands
  9. Lines: 579
  10. Approved: news-answers-request@mit.edu
  11. Expires: 29 Jan 1994 16:26:13 GMT
  12. Message-ID: <classes_756404773@es.ele.tue.nl>
  13. Reply-To: tiggr@es.ele.tue.nl (Tiggr)
  14. NNTP-Posting-Host: krait.es.ele.tue.nl
  15. Summary: This second part of the comp.lang.objective-c FAQ postings
  16.         gives an overview of available class libraries.
  17. Originator: tiggr@krait.es.ele.tue.nl
  18. Xref: senator-bedfellow.mit.edu comp.lang.objective-c:1829 comp.answers:3102 news.answers:16032
  19.  
  20. Archive-name: Objective-C/classes
  21. Version: $Id: classes,v 2.3 1993/12/01 07:37:49 tiggr Exp $
  22.  
  23.  
  24.  
  25.                 Objective-C
  26.  
  27.                  ClassWare Listing
  28.  
  29.  
  30.  
  31. This is the second of three FAQ postings for comp.lang.objective-c.  This
  32. posting lists available kits and classes, to aid the reader in answering the
  33. question `to re-use or to re-invent?'.  In order to keep this list up to date
  34. and as interesting and diverse as possible, send your additions, deletions
  35. and suggestions to tiggr@es.ele.tue.nl.
  36.  
  37. The available classes and kits are categorized as follows:
  38.  
  39.     Stepstone    Stepstone libraries,
  40.             for use with Stepstone's environment
  41.     NeXT        NeXT kits, for use with NEXTSTEP
  42.     FSF        FSF maintained/released classes
  43.             for use with GNU CC
  44.     Third Party    commercial classes
  45.     GPL        classes released under the GPL
  46.     Public Domain    public domain classes---no GPL
  47.  
  48.  
  49. Stepstone
  50.  
  51.     Bundled with the compiler is ICpak(tm) 101 Foundation Class Library.
  52.     This library provides twenty classes and more than three hundred methods
  53.     including such things as Collections (OrdCltn, Stack, Set, Dictionary,
  54.     SortCltn), Arrays (IdArray, IntArray), String, Sequences, Automatic
  55.     Object I/O (ASCII Filer), etc.
  56.  
  57.     The ICpak 201 Graphical User Interface library is used to build iconic
  58.     multiwindow user interfaces for workstation applications.  The library
  59.     consists of 58 classes and over 1,100 methods.  Classes include such
  60.     things as Controllers, Menu's, Menu Items, Icons, Windows(StdLayer),
  61.     Timers, Buttons, Text, etc, etc.  ICpak 201 is ported to X Windows,
  62.     OpenWindows, Motif and SunView and provides a consistent user interface/
  63.     look-and-feel between all platforms.
  64.  
  65.     Contact
  66.  
  67.     The Stepstone Corporation
  68.     75 Glen Road
  69.     Sandy Hook, CT 06482
  70.     tel: (203) 426-1875
  71.     fax: (203) 270-0106
  72.     telex: 506127
  73.  
  74. NeXT
  75.  
  76.     Common Classes
  77.  
  78.     Several classes provided with NeXTSTEP do not belong to a specific
  79.     kit: Object (core of the runtime system, root of the general class
  80.     hierarchy), Storage, List (an abstract array), HashTable (to store
  81.     (key, object) associations), StreamTable (to write data to streams)
  82.     and NXStringTable (to store (key, string) associations).
  83.  
  84.     Application Kit
  85.  
  86.     The Application Kit defines a set of Objective-C classes and
  87.     protocols, C functions, and assorted constants and data types that
  88.     are used by virtually every NeXTSTEP application.  The pith of the
  89.     Kit are the tools it provides for implementing a graphical,
  90.     event-driven user interface:
  91.  
  92.         The Application Kit provides classes---most notably Window and
  93.         View---that make drawing on the screen exquisitely succinct.
  94.         Much of the unromantic work that's involved in
  95.         drawing---communicating with hardware devices and screen
  96.         buffers, clearing areas of the screen before drawing,
  97.         coordinating overlapping drawing areas---is taken care of for
  98.         you, letting you concentrate on the much more gratifying task of
  99.         supplying code that simply draws.  And even this task is
  100.         assisted by many of the other classes and a number of C
  101.         functions that provide drawing code for you.
  102.  
  103.         The Application Kit makes event handling extremely simple.  The
  104.         Responder class, from which many of the Kit's classes inherit,
  105.         defines a mechanism by which the user's actions are passed to
  106.         the objects in your application that can best respond to them.
  107.         The Application class, which inherits from Responder,
  108.         establishes the low-level connections that makes this system
  109.         possible.  It provides methods that inform your application of
  110.         watershed events, such as when the user makes the application
  111.         active and inactive, and when the user logs out or turns off the
  112.         computer.
  113.  
  114.     By using these tools, you bless your application with a look and
  115.     feel that's similar to other applications, making it easier for the
  116.     user to recognize and use.
  117.  
  118.     (Introduction from the NeXTSTEP General Reference, "Application Kit"
  119.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  120.     All rights reserved.)
  121.  
  122.     Database Kit
  123.  
  124.     The Database Kit provides a comprehensive set of tools, classes, and
  125.     protocols for building applications that use a high-level
  126.     entity-relationship model to manipulate database servers such as
  127.     those provided by Oracle or Sybase.  The kit provides services that
  128.     include:
  129.  
  130.         Communication with client-server databases.
  131.  
  132.         Modeling properties (attributes and relationships) of each
  133.         database.
  134.  
  135.         Record management and buffering.
  136.  
  137.         Data flow between record managers and the application user
  138.         interface.
  139.  
  140.         User interface objects for display and editing.
  141.  
  142.     (Introduction from the NeXTSTEP General Reference, "Database Kit"
  143.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  144.     All rights reserved.)
  145.  
  146.     Distributed Objects
  147.  
  148.     The Distributed Objects system provides a relatively simple way for
  149.     applications to communicate with one another by allowing them to
  150.     share Objective-C objects, even amongst applications running on
  151.     different machines across a network.  They are useful for
  152.     implementing client-server and cooperative applications.  The
  153.     Distributed Objects system subsumes the network aspects of typical
  154.     remote procedure call (RPC) programming, and allow an application to
  155.     send messages to remote objects using ordinary Objective-C syntax.
  156.  
  157.     The Distributed Objects system takes the form of two classes,
  158.     NXConnection and NXProxy.  NXConnection objects are primarily
  159.     bookkeepers that manage resources passed between applications.
  160.     NXProxy objects are local objects that represent remote objects.
  161.     When a remote object is passed to your application, it is passed in
  162.     the form of a proxy that stands in for the remote object; messages
  163.     to the proxy are forwarded to the remote object, so for most intents
  164.     and purposes the proxy can be treated as though it were the object
  165.     itself.  Note that direct access to instance variables of the remote
  166.     object isn't available through the proxy.
  167.  
  168.     (Introduction from the NeXTSTEP General Reference, "Distributed Objects"
  169.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  170.     All rights reserved.)
  171.  
  172.     Indexing Kit
  173.  
  174.     The Indexing Kit is a set of programmatic tools for managing data,
  175.     especially the large amounts of data characteristic of information
  176.     intensive applications.  Much as the Application Kit provides a
  177.     framework for a graphical interface, the Indexing Kit provides a
  178.     framework for data management.
  179.  
  180.     The Indexing Kit supplies facilities for building custom databases
  181.     and for searching the UNIX file system.  Key benefits include
  182.     guaranteed data integrity, excellent performance, thread-safe
  183.     operation, tight integration with the NeXTSTEP programming
  184.     environment, and the ability to efficiently store and retrieve
  185.     Objective-C objects and unstructured data like text, sound, and
  186.     images.
  187.  
  188.     The Indexing Kit consists of:
  189.  
  190.         A transaction-oriented foundation for storing and retrieving
  191.         persistent data, using virtual memory mapping for efficient
  192.         random access to parts of a file without reading or writing the
  193.         entire file. Transactions guarantee data integrity on persistent
  194.         storage media, and are also used to manage concurrent access to
  195.         shared data.
  196.  
  197.         Fast sequential and associative access to stored data.
  198.         Associative access is untyped, in that the programmer defines
  199.         the data types of keys and their ordering by means of a
  200.         comparison function or a format string.
  201.  
  202.         A simple data management capability based on the Objective-C
  203.         run-time system.  Records can be moved efficiently between
  204.         working memory and the storage substrate in the form of
  205.         Objective-C objects.  Multiple indexes can be built over
  206.         programmer-defined attributes, so that records can be ordered
  207.         and retrieved by the values of their indexed attributes.
  208.  
  209.         A general query processing facility, including a declarative
  210.         query language and its interpreter.  Queries can be applied to
  211.         individual objects, to collections of objects, or to the
  212.         attribute/value lists produced by Indexing Kit's customizable
  213.         text processing tools.
  214.  
  215.         High-level file system searching facilities based on the
  216.         supporting layers described above, including fast literal
  217.         searching of file contents.
  218.  
  219.     (Introduction from the NeXTSTEP General Reference, "Indexing Kit"
  220.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  221.     All rights reserved.)
  222.  
  223.     Mach Kit
  224.  
  225.     The Mach Kit provides an object-oriented interface to some of the
  226.     features of the Mach operating system.  At this time, it is most
  227.     useful to applications that make use of the Distributed Objects
  228.     system, since these applications rely upon Mach's message sending
  229.     abilities to transport objects, ports, and data between processes.
  230.     The Mach Kit may also be useful for drivers and multithreaded
  231.     applications.  The Mach Kit provides several classes and protocols,
  232.     listed below.
  233.  
  234.     (Introduction from the NeXTSTEP General Reference, "Mach Kit"
  235.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  236.     All rights reserved.)
  237.  
  238.     NextInfo Kit
  239.  
  240.     The NetInfo Kit is a collection of classes and a single function
  241.     used to provide a connection to and interface with NetInfo domains.
  242.     The NetInfo Kit provides classes for basic interface with a domain
  243.     as well as specialized panels.
  244.  
  245.     (Introduction from the NeXTSTEP General Reference, "NetInfo Kit"
  246.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  247.     All rights reserved.)
  248.  
  249.     3D Kit
  250.  
  251.     The 3D Graphics Kit enables NeXTSTEP applications to model and
  252.     render 3-dimensional scenes.  Much as the Application Kit's 2D
  253.     graphics capabilities are based on the Display PostScript
  254.     interpreter, the 3D Kit's capabilities are based on the Interactive
  255.     RenderMan renderer.  There are both similarities and differences in
  256.     the inner workings of the two implementations.
  257.  
  258.     One similarity is that both are implemented with a client-server
  259.     model, in which client applications send drawing code to the Window
  260.     Server, which does the actual drawing.  Another similarity is that
  261.     N3DCamera---the 3D Kit's View---generates all drawing code, both 2D
  262.     and 3D, when its drawSelf: method is invoked.  This keeps the
  263.     Application Kit's display mechanism intact for both PostScript and
  264.     RenderMan drawing.
  265.  
  266.     One difference in the implementations is in the code generated for
  267.     drawing. For 2D drawing, a View sends PostScript code to the Window
  268.     Server's Display PostScript interpreter.  For 3D drawing, a View
  269.     sends RenderMan Interface Bytestream (RIB) code to the Window
  270.     Server's Interactive RenderMan renderer.
  271.  
  272.     (Introduction from the NeXTSTEP General Reference, "3D Graphics Kit"
  273.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  274.     All rights reserved.)
  275.  
  276.     Sound Kit
  277.  
  278.     XXX
  279.  
  280.     NXLiveVideoView
  281.  
  282.     The NXLiveVideoView class provides API for interactive display of
  283.     live video on the screen of a NeXTdimension Computer.  The
  284.     NXLiveVideoView class specification provides a complete discussion
  285.     of the NeXTdimension Computer's video capabilities and the API
  286.     provided by NXLiveVideoView.
  287.  
  288.     (Introduction from the NeXTSTEP General Reference, "Video"
  289.     reprinted with permission.  Copyright (c) 1993 NeXT Computer, Inc.
  290.     All rights reserved.)
  291.  
  292.     Applications
  293.  
  294.     There are several classes which solely exist to enable the
  295.     programmer to add functionality to specific existing NEXTSTEP
  296.     applications:
  297.  
  298.         IBPalette, IBInspector
  299.  
  300.         These classes allow developers to expand the functionality
  301.         of the Interface Builder application, creating their own
  302.         palettes of objects that can be dragged into an interface,
  303.         and inspectors to set and view the attributes of those
  304.         objects.
  305.  
  306.         Layout
  307.  
  308.         This class allows developers to add their own modules to the
  309.         Preferences application.
  310.  
  311.         WMInspector
  312.  
  313.         This class allows developers to add their own file contents
  314.         inspectors to the Workspace Manager application.
  315.  
  316.     Other
  317.  
  318.     Before NeXTSTEP 3.0, MusicKit was distributed as part of NEXTSTEP.
  319.     MusicKit is now maintained and made available by CCRMA (see the
  320.     entry under `Public Domain Kits').  Also until the advent of
  321.     NeXTSTEP 3.0, PhoneKit was part of NeXTSTEP.  PhoneKit classes
  322.     provided easy to ISDN connections.
  323.  
  324.     Contact
  325.  
  326.     NeXT Computer, Inc.
  327.     900 Chesapeake Drive
  328.     Redwood City, CA 94063
  329.     tel: 800 848 NEXT
  330.     fax: 415 780 2801
  331.     email: NeXTanswers@NeXT.COM
  332.  
  333. FSF
  334.  
  335.     Object
  336.  
  337.     Object is the root class which comes as part of the Objective-C
  338.     runtime library provided with the GNU CC compiler.
  339.  
  340.     Collection Library
  341.  
  342.     The Collection Library is a library of Objective-C objects with
  343.     similar functionality to Smalltalk's Collection objects.  It
  344.     includes: Set, Bag, Array, CircularArray, GapArray, Queue, Stack,
  345.     Heap, LinkedList, BinaryTree, SplayTree, RBTree, Dictionary,
  346.     MappedCollector, EltNodeCollector and DelegateList.
  347.  
  348.     Outside of its main hierarchy it also includes List, HashTable and
  349.     Storage objects compatible with NeXT's objects of the same name.
  350.  
  351.     An alfa release of the Collection Library can be obtained by FTP
  352.     from cs.rochester.edu:/pub/libcoll/libcoll-yymmdd.tar.gz, in
  353.     which `yymmdd' is a string of digits specifies its date.
  354.  
  355.     The Collection Library needs GCC 2.5.0 or a more recent version
  356.     to be compiled.
  357.  
  358.     Contact: mccallum@cs.rochester.edu
  359.  
  360.     Contact
  361.  
  362.     Free Software Foundation
  363.     675 Massachusetts Avenue
  364.     Cambridge, MA  02139
  365.     +1-617-876-3296
  366.  
  367.  
  368. Third Party Kits
  369.  
  370.     Berkeley Productivity Group
  371.  
  372.     BPG BLOCKS
  373.  
  374.         BPG BLOCKS is an open extensible manufacturing framework which
  375.         supports a variety of applications including factory definition,
  376.         real-time tracking, real-time scheduling, short-term planning,
  377.         shift scheduling, production planning and capacity analysis.
  378.         BPG BLOCKS creates a virtual reality which represents the real
  379.         factory including the people, machines, material, processes,
  380.         their dynamics and interactions.  BPG BLOCKS is based on an easy
  381.         to understand design where every software object represents
  382.         either a real-world entity, or an important concept in the
  383.         manufacturing domain.  BPG BLOCKS' object-oriented manufacturing
  384.         model mirrors the real world, captures numerous manufacturing
  385.         details accurately, supports commonly used abstractions, and
  386.         allows decisions to be made based on aggregate information.  BPG
  387.         BLOCKS forms the basis for building custom applications which
  388.         meet the unique needs of your particular manufacturing
  389.         facility.
  390.  
  391.     Contact
  392.  
  393.         Christopher Lozinski
  394.             BPG
  395.             35032 Maidstone Court
  396.             Newark, CA 94560
  397.             tel: (510) 795-6086
  398.             fax: (510) 795-8077
  399.             email: lozinski@cup.portal.com
  400.  
  401.  
  402.     M. Onyschuk and Associates Inc.
  403.  
  404.     OBJECT:Math
  405.  
  406.         OBJECT:Math is a comprehensive set of tools and 23 Objective-C
  407.         classes used to add extensible math and string handling to your
  408.         custom and commercial applications:
  409.  
  410.         Compiler---The OBJECT:Math Compiler converts math and string
  411.         expressions (as might be typed into a spreadsheet cell,
  412.         plotting package, etc.) into Objective-C objects.
  413.  
  414.         Unbundler---The OBJECT:Math Unbundler object allows
  415.         end-users to extend their OBJECT:Math applications with
  416.         custom-built or third-party OBJECT:Math function bundles.
  417.  
  418.         User Interface Objects---OBJECT:Math comes complete with a
  419.         Lotus Improv (TM) style function picker, a variable editor,
  420.         and objects used to display OBJECT:Math expression trees and
  421.         other tree structures.
  422.  
  423.         As product sources are available the product may even be of
  424.         interest to non-NeXT Objective-C programmers.
  425.  
  426.     Contact
  427.  
  428.         Mark Onyschuk
  429.         M. Onyschuk and Associates Inc.
  430.         tel: (416) 462 3954
  431.         email: ask-oa@plexus.guild.org
  432.  
  433.  
  434.     Stream Technologies Inc.
  435.  
  436.     Store
  437.  
  438.         Store is an Object Oriented User Level Virtual File System.
  439.         It is described extensively in `Store - Object Oriented Virtual
  440.         File System' by Timo Lehtinen, which is available by anonymous
  441.         FTP from ftp.sti.fi:/pub/sti/doc/papers/store.ps.
  442.  
  443.     Contact
  444.  
  445.         Stream Technologies Inc.
  446.         Valkj\"arventie 2
  447.         SF-02130 Espoo
  448.         Finland
  449.         tel: +358 (0) 4357 7348
  450.         fax: +358 (0) 4357 7340
  451.         email: info@sti.fi
  452.  
  453.  
  454. GPL Kits
  455.  
  456.    objcX
  457.  
  458.     An alpha version of an GNU Objective-C class library for X/Motif
  459.     Windows is available via anonymous ftp from
  460.  
  461.         ftp.slac.stanford.edu:pub/sources/objcX-0.5.tar.gz.
  462.  
  463.     For lack of a good witty name, the library is called objcX.
  464.  
  465.     The library requires the List class from the Collection Library for
  466.     GNU Objective-C (libcoll).
  467.  
  468.     Because we built this library to support porting NeXTSTEP
  469.     applications to X/Motif and because our GUI programming experience
  470.     has been with NeXTSTEP, this class library has a strongly
  471.     resemblance to NeXT's AppKit.  However, it is only a Objective-C
  472.     wrapper to Motif widgets and does not support Display PostScript,
  473.     rich text, pasteboard, drag and drop, services or many other things
  474.     associated with the NeXTSTEP environment that are not available
  475.     under X windows.
  476.  
  477.     Also available, for a NeXTSTEP platform only, is a program that
  478.     converts an object archive file generated by the InterfaceBuilder
  479.     (.nib file) into a GNU object archive file usable by the objcX class
  480.     library.  It is available from
  481.  
  482.         ftp.slac.stanford.edu:pub/sources/trnib-0.5.tar.gz
  483.  
  484.     This program requires NeXTSTEP developer and gcc.
  485.  
  486.     These announcements are also a call for help.  The library and the
  487.     translator program could use much more work in two areas...
  488.  
  489.      - first the library could be flushed out with more features to
  490.        support larger applications
  491.  
  492.      - second, I would like to contribute the library to the GNU
  493.        project. But it is based on Motif widgets which is not free
  494.        software.  Thus, work is needed to replace Motif widgets with
  495.        widgets based on free software.
  496.  
  497.     Contact
  498.  
  499.         Paul F. Kunz    Paul_Kunz@slac.stanford.edu (NeXT mail ok)
  500.         Stanford Linear Accelerator Center, Stanford University
  501.         Voice: (415) 926-2884   (NeXT) Fax: (415) 926-3587
  502.  
  503.  
  504.     Tiggr's Objective-C Library
  505.  
  506.     Tiggr's Objective-C Library, or tobjc for short, is a basic
  507.     Objective-C library, whose functionality is based on Lisp.
  508.  
  509.     tobjc provides the following classes: LispObject, LispVector,
  510.     Cons, Double, Integer, String, AVLTree, THashTable, StringTable,
  511.     Trie, Lex, LexC and LexDFG.  Furthermore, tobjc includes a
  512.     program to extract documentation from Objective-C source files.
  513.  
  514.     All classes are a subclass of LispObject.  The LispObject class
  515.     provides its allocation routines and garbage collection (through
  516.     class abstraction) to its subclasses.
  517.  
  518.     tobjc is undergoing continuous development.  Test releases can
  519.     be obtained by anonymous FTP to `ftp.es.ele.tue.nl' as
  520.     `/pub/objc/tobjc-x.xx.tar.gz', where `x.xx' is some version
  521.     indication.  It is by no means finished yet, but certainly
  522.     useful (I use it for developing a VHDL->ASCIS DFG compiler).
  523.  
  524.     Contact
  525.  
  526.         Pieter J. `Tiggr' Schoenmakers
  527.         email: tiggr@es.ele.tue.nl
  528.         tel: +31 40 474251
  529.         fax: +31 40 464527
  530.  
  531.  
  532. Public Domain Kits
  533.  
  534.     CCRMA
  535.  
  536.     MusicKit
  537.  
  538.         The Music Kit3 provides tools for designing music
  539.         applications. These tools address three topics: music
  540.         representation, performance, and synthesis (digital sound
  541.         generation and processing).  The Objective-C classes defined in
  542.         the Music Kit fall neatly into these three areas.
  543.  
  544.         The design goal of the Music Kit is to combine the interactive
  545.         gestural control of MIDI with the precise timbral control of
  546.         MUSIC 5-type systems in an extensible, object-oriented
  547.         environment. To this end, the Music Kit is capable of fully
  548.         representing MIDI.  The Music Kit accepts MIDI in and can send
  549.         MIDI out through the two serial ports at the back of the
  550.         computer. Nonetheless, the Music Kit isn't limited by the MIDI
  551.         specification; for example, its resolution of frequency and
  552.         amplitude is much finer than MIDI's highly quantized values.
  553.  
  554.         The Music Kit generates sounds by sending synthesis instructions
  555.         to the DSP.  The generality of the synthesis software far
  556.         surpasses that of commercial synthesizers.  While most
  557.         synthesizers employ only one type of synthesis-the Yamaha DX-7
  558.         uses only frequency modulation, for example-the Music Kit can
  559.         implement virtually any sound synthesis strategy.  And since the
  560.         synthesis engine (the DSP) and the control stream are brought
  561.         together in a single high-performance computer, the Music Kit
  562.         makes possible an unprecedented level of expressive control.
  563.         (from Documentation/MusicKit+DSP/General/SoundMusicDSP.rtfd)
  564.  
  565.         MusicKit used to be supplied by NeXT as part of NeXTSTEP (pre
  566.         3.0).  It is now maintained by CCRMA and available by FTP from
  567.         ccrma-ftp.stanford.edu.  There are two packages:
  568.  
  569.         pub/MusicKit_3.1.pkg.tar
  570.  
  571.             Class library, header files, documentation, programming
  572.             examples, and a suite of applications (size = 7.38MB).
  573.  
  574.         pub/MusicKitSource_3.1.pkg.tar
  575.             Source of the MusicKit class library (size = 5.5MB).
  576.  
  577.         and some other related files:
  578.  
  579.         22333 May 27  1993 MusicKit-NWExpo93.rtf
  580.          2379 Feb 14  1993 MusicKit.README
  581.         60293 Dec  8  1992 MusicKit_3.1_KnownBugs
  582.  
  583.     Contact
  584.  
  585.         email: musickit@ccrma.stanford.edu
  586.  
  587.  
  588. ADMINISTRATIVIA
  589.  
  590.     The information in this file comes AS IS, WITHOUT ANY WARRANTY.  You may
  591.     use the information contained in this file or distribute this file, as
  592.     long as you do not modify it, make money out of it or take the credits.
  593.  
  594. The first version of this FAQ was written by Bill Shirly, helped by the
  595. feedback and information given to him by a lot of people.  The current
  596. version is maintained by Tiggr, supported by feedback from Glen Diener,
  597. Christopher Lozinski and a lot of other people.  Mail your bug reports,
  598. comments, suggestions and additions to tiggr@es.ele.tue.nl.
  599.