
#include <OB/CORBA.h>
#include <hello_impl.h>

Hello_impl::Hello_impl()
{
}

void
Hello_impl::hello()
{
    cout << "Hello World!" << endl;
    throw aceException( "here is an exception" );
}


