// class spec for jeff class #include using namespace std; #include "brian.h" #ifndef _JEFF_H_ #define _JEFF_H_ class jeff : public brian { public: jeff(string x, string y) : brian(x) { cout << "Jeff says, " << y << endl; } }; #endif