#include "hello_i.h" /* hello_i::hello_i (void) { } */ hello_i::hello_i(const char *name) { m_id = strdup(name); } hello_i::~hello_i (void) { free(m_id); } void hello_i::say_hello ( const char * name) ACE_THROW_SPEC (( CORBA::SystemException)) { cout << m_id << " says hello to " << name << endl; }