#ifndef __MENU_H__ #define __MENU_H__ #include #include #include using namespace std; #include "people.h" const vector menu_items = { "(a)dd person", "(d)isplay", "(m)ake connection", "(b)reak connection", "(c)hange food", "(s)how food friends", "(e)xtra credit (bacon number)", "", "(q)uit", }; class menu {}; void get_index(people &, unsigned int &, string); void get_two_indices(people &, unsigned int &, unsigned int &); ostream & operator<<(ostream & os, const menu & m); #endif