--- projects/cms/source/server/idl/iscream.idl 2000/12/04 17:39:02 1.11 +++ projects/cms/source/server/idl/iscream.idl 2001/02/01 01:20:16 1.12 @@ -2,7 +2,7 @@ // This class provides infomation about the CORBA // interface for the server side of the I-Scream system. // -// $Id: iscream.idl,v 1.11 2000/12/04 17:39:02 tdb Exp $ +// $Id: iscream.idl,v 1.12 2001/02/01 01:20:16 tdb Exp $ // module uk { module ac { module ukc { module iscream { module core { @@ -53,7 +53,16 @@ module uk { module ac { module ukc { module iscream { interface ClientInterface { void receiveXML(in string xml); }; + interface CorbaHandler { + boolean start(); + boolean stop(); + boolean setHostList(in string hostList); + }; + interface CorbaClientListener { + CorbaHandler connect(); + }; + // end clientinterface }; // end uk.ac.ukc.iscream -};};};}; \ No newline at end of file +};};};};