// Menu.cpp: implementation of the CMenu class. // ////////////////////////////////////////////////////////////////////// #include "Menu.h" #include #include ////////////////////////////////////////////////////////////////////// // Construction/Destruction ////////////////////////////////////////////////////////////////////// CMenu::CMenu() { } CMenu::~CMenu() { } void CMenu::display() { cout << setw(36) << " " << "Main Menu" << endl << endl; cout << "1. Enter Residence Data." << endl; cout << "2. Display Residence Data." << endl; cout << "3. Exit E-911 System." << endl << endl; } int CMenu::GetChoice() { cout << "Enter your choice (1-3): "; cin >> m_choice; char nl; cin.get(nl); return(m_choice); }