home *** CD-ROM | disk | FTP | other *** search
- package PLANNING_TOOLS is --Allows project manager to schedule activities
- procedure PLAN is
-
- -- This top level procedure allows the user 5 choices at the terminal.
- -- Choiec 1 is to create a new file to be input to the simpert program.
- -- Choice 2 is to modify a file previously created.
- -- Choice 3 is to run the simpert program against the file.
- -- Choice 4 is to run the gantt (horizontal bar chart) program
- -- against a file to create the gantt chart.
- -- Choice 5 is to exit from the top level.
-
- package TITLE_PAGE is new TITLE_PAGE_PACKAGE
- (Developing_organization => "Ford Aerospace, WDL".
- Author => "Mike McNair, Ken LaMarche, TC Bryan"&
- "Larry Yelowitz"
- Contact => "Larry Yelowitz",
- Address => "3939 Fabian Way, MS X20",
- "Palo Alto, CA 94303",
- Phone => (415,852,4198),
- Date_Submitted => (17, Jun, 1985));
-
- package TECHNICAL_PARAMETERS is new TECHNICAL_PARAMETERS_PACKAGE
- (Lines_of_Source_code => 5600,
- Development_Compiler => (DATA_GENERAL, ADE),
- Planned_Compilers_Supported => (DATA_GENERAL, ADE),
- Auxilliary_files_size => (TBD));
-
- package DEVELOPMENT_SCHEDULE_AND_STATUS is new SCHEDULE_PACKAGE
- (Completed_events => null,
- Scheduled_events => (PDR, (TBD)),
- (CDR, (TBD)),
- (Delivery, (30, Jun, 1985)));
-
- end PLANNING_TOOLS;
-