indexing description: "System's root class"; note: "Initial version automatically generated" class ROOT_CLASS inherit EOLE_COM rename make as com_make export {NONE} all end EOLE_ERROR_CODE export {NONE} all end create make feature -- Initialization make is -- Output a welcome message. local int1, int2: INTEGER do io.putstring ("Welcome to ISE Eiffel!%N"); com_make if co_initialize = S_ok then create client client.initialize(Clsctx_inproc_server) print ("Enter first integer%N.") io.read_integer int1 := io.last_integer print ("Enter second integer%N.") io.read_integer int2 := io.last_integer print ("The sum equal ") print (client.sum (int1, int2)) print ("%N") end end; feature {NONE}-- Implementation client: CLIENT end -- class ROOT_CLASS