| Computer Science 2574 |
Intro to Data Structures & Soft Eng
|
#include "opencloseview.h"
//***********************************************************************************
// Function: Open
// Purpose: This function prompts the user whether or not they want to open a
// previously saved ODB file or if they want to make a new ODB file. It
// then calls the corresponding functions.
//
// Called By: FileMenu,
// Calls: OpenPreviousODB, odbmenu
// Parameters: quit - integer variable passed out to conditoins1
//
// Return value: void
// Authors: John W. Boyd III & Cullen J. Morris
// Version: 1.1
//***********************************************************************************
void Open()
{
OpenPreviousODB();
odbmenu();
} //end Open