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

  1. package PLANNING_TOOLS is  --Allows project manager to schedule activities
  2. procedure PLAN is
  3.  
  4. -- This top level procedure allows the user 5 choices at the terminal.
  5. -- Choiec 1 is to create a new file to be input to the simpert program.
  6. -- Choice 2 is to modify a file previously created.
  7. -- Choice 3 is to run the simpert program against the file.
  8. -- Choice 4 is to run the gantt (horizontal bar chart) program
  9. -- against a file to create the gantt chart.
  10. -- Choice 5 is to exit from the top level.
  11.  
  12. package TITLE_PAGE is new TITLE_PAGE_PACKAGE
  13.   (Developing_organization      => "Ford Aerospace, WDL".
  14.    Author                       => "Mike McNair, Ken LaMarche, TC Bryan"&
  15.                                     "Larry Yelowitz"
  16.    Contact                      => "Larry Yelowitz",
  17.    Address                      => "3939 Fabian Way, MS X20",
  18.                                    "Palo Alto, CA 94303",
  19.    Phone                        => (415,852,4198),
  20.    Date_Submitted               => (17, Jun, 1985));
  21.  
  22. package TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
  23.   (Lines_of_Source_code         => 5600,
  24.    Development_Compiler         => (DATA_GENERAL, ADE),
  25.    Planned_Compilers_Supported  => (DATA_GENERAL, ADE),
  26.    Auxilliary_files_size        => (TBD));
  27.  
  28. package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
  29.   (Completed_events             => null,
  30.    Scheduled_events             => (PDR, (TBD)),
  31.                                    (CDR, (TBD)),
  32.                                    (Delivery, (30, Jun, 1985)));
  33.  
  34. end PLANNING_TOOLS;
  35.