#ifndef __RESTAURANT_H__ #define __RESTAURANT_H__ #include #include using namespace std; class restaurant { public: string name; int score; restaurant(string name, int score): name(name), score(score) {} friend ostream & operator<<(ostream & os, restaurant & r); }; #endif