//main file #include "brian.h" #include "jeff.h" #include "steve.h" int main ( ) { brian BRIAN; jeff JEFF; steve STEVE; BRIAN.speak(); // is this ok? JEFF.speak(); // how about this? STEVE.speak(); // and this one? STEVE.moo(); // what about THIS one? return 0; }