home *** CD-ROM | disk | FTP | other *** search
- package LIST_PROCESSING_PACKAGE is -- a package of types, objects and functions
- -- that emulate the important capabilities of the AI language LISP which are
- -- not directly available in Ada. These capabilities will be represented in
- -- Ada in a relatively straightforward manner without changing the Ada
- -- language definition.
-
- -- It is impossible at this time to provide a specific list of the significant
- -- types and procedures needed to utilize this tool. Only after further
- -- program design is completed can this be accomplished. We will attempt to
- -- provide this list at the earliest possible opportunity.
-
- package TITLE_PAGE is new TITLE_PAGE_PACKAGE
- (DEVELOPING_ORGANIZATION => "Software Architecture and Engineering, Inc.",
- AUTHORS => ("Andrew B. Ferrentino",
- "Michael A. Jaskowiak"),
- CONTACT => "Andy McGarry",
- ADDRESS => ("1500 Wilson Boulevard, Suite 800",
- "Arlington", "VA", "22209"),
- PHONE => (703,276,7910),
- DATE SUBMITTED => (16,Nov,1984));
-
- package TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
- (LINES_OF_SOURCE_CODE => unknown,
- DEVELOPMENT_COMPILER => (DECVAX, TELESOFT_ADA),
- PLANNED_COMPILERS_SUPPORTED => unknown,
- AUXILLIARY_FILES_SIZE => unknown);
-
- package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
- (COMPLETED_EVENTS => (CA,(6,NOV,1984)),
-
- -- All scheduled event dates are tentative.
-
- SCHEDULED_EVENTS => ((PDR,(11,JAN,1985)),
- (DRAFT_TOP_LEVEL_DESIGN_SPECIFICATION,(7,JAN,1985)),
- (DRAFT_USERS_MANUAL,(7,JAN,1985)),
- (CDR,(MAR,1985)),
- (TEST,(APRIL,1985)),
- (DEMO,(MAY_JUNE,1985)),
- (DELIVERY,(30,JUNE,1985)));
-
- end LIST_PROCESSING_PACKAGE;
-