//
// HelloWorldImpl - implements the HelloWorld Interface
//
package corbahw;

import corbahw.HelloWorld.*;

import org.omg.CosNaming.*;
import org.omg.CosNaming.NamingContextPackage.*;
import org.omg.CORBA.*;

class HelloWorldImpl extends _HelloWorldImplBase {

    public String HelloWorld() {
	return "HelloWorld from Ulm !";
    }
}
