Implementing The Servant (Cont.) // write the given message to the screen. void HelloWorldImpl::sayMessage(const char* a_message) { if (a_message) cout << "Message: " << a_message << endl << flush; } // returns a random true or false value. CORBA::Boolean HelloWorldImpl::isTheWorldSafe() { // ok, so i'm lazy - too lazy to use rand()... return 1; }