#ifndef __COLLECT_H__ #define __COLLECT_H__ #include #include #include using namespace std; #include "sm_array.h" const vector menu = { "(d)isplay", "(a)dd", "(r)emove", "(s)huffle", "(b)egin", }; ostream & operator<<(ostream &, const vector &); garray initial_restaurants(); garray populate_restaurants(); #endif