home *** CD-ROM | disk | FTP | other *** search
/ Programmer's ROM - The Computer Language Library / programmersrom.iso / ada / ai / alsp.abs < prev    next >
Encoding:
Text File  |  1988-05-03  |  2.0 KB  |  42 lines

  1. package LIST_PROCESSING_PACKAGE is -- a package of types, objects and functions
  2. -- that emulate the important capabilities of the AI language LISP which are
  3. -- not directly available in Ada.  These capabilities will be represented in
  4. -- Ada in a relatively straightforward manner without changing the Ada
  5. -- language definition.
  6.   
  7. -- It is impossible at this time to provide a specific list of the significant
  8. -- types and procedures needed to utilize this tool.  Only after further
  9. -- program design is completed can this be accomplished.  We will attempt to
  10. -- provide this list at the earliest possible opportunity.
  11.   
  12. package TITLE_PAGE is new TITLE_PAGE_PACKAGE
  13.   (DEVELOPING_ORGANIZATION    => "Software Architecture and Engineering, Inc.",
  14.    AUTHORS                    => ("Andrew B. Ferrentino",
  15.                                   "Michael A. Jaskowiak"),
  16.    CONTACT                    => "Andy McGarry",
  17.    ADDRESS                    => ("1500 Wilson Boulevard, Suite 800",
  18.                                   "Arlington", "VA", "22209"),
  19.    PHONE                      => (703,276,7910),
  20.    DATE SUBMITTED             => (16,Nov,1984));
  21.   
  22. package TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
  23.   (LINES_OF_SOURCE_CODE           => unknown,
  24.    DEVELOPMENT_COMPILER           => (DECVAX, TELESOFT_ADA),
  25.    PLANNED_COMPILERS_SUPPORTED    => unknown,
  26.    AUXILLIARY_FILES_SIZE          => unknown);
  27.   
  28. package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
  29.   (COMPLETED_EVENTS    => (CA,(6,NOV,1984)),
  30.   
  31.   -- All scheduled event dates are tentative.
  32.  
  33.    SCHEDULED_EVENTS    => ((PDR,(11,JAN,1985)),
  34.                            (DRAFT_TOP_LEVEL_DESIGN_SPECIFICATION,(7,JAN,1985)),
  35.                            (DRAFT_USERS_MANUAL,(7,JAN,1985)),
  36.                            (CDR,(MAR,1985)),
  37.                            (TEST,(APRIL,1985)),
  38.                            (DEMO,(MAY_JUNE,1985)),
  39.                            (DELIVERY,(30,JUNE,1985)));
  40.   
  41. end LIST_PROCESSING_PACKAGE;
  42.