/*----------------------------------------------------------------------*/
/*                            Menu.cpp                                 */
/* Authored By : H.P.Kasmaei                                            */
/* Last Update : March 6, 2009                                          */
/* http://www.hpkclasses.ir/                                            */
/*----------------------------------------------------------------------*/

#include <iostream.h>

int get_menu_choice( void );

main()
{
    int choice;

    choice = get_menu_choice();
    cout << "You chose Menu Option " << choice ;

    return 0;
}

int get_menu_choice( void )
{
    int selection = 0;
    do {
      cout << endl;
      cout << "1 - Add a Record" << endl;
      cout << "2 - Change a record" << endl;
      cout << "3 - Delete a record " << endl;
      cout << "4 - Quit" << endl;
      cout << "Enter a selection: " ;
      cin >> selection ;

   }while ( selection < 1 || selection > 4 );

   return selection;
}

