From: rahuel Date: Wed, 19 Oct 2005 09:21:41 +0000 (+0000) Subject: New methods for check of components instances X-Git-Tag: V3_1_0a3~21 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=8e4db75e419adcd4df02e2724631f21e102b77e6;p=samples%2Fcomponent.git New methods for check of components instances --- diff --git a/idl/AddComponent.idl b/idl/AddComponent.idl index b126148..0732c63 100644 --- a/idl/AddComponent.idl +++ b/idl/AddComponent.idl @@ -33,13 +33,18 @@ module SuperVisionTest { interface Adder ; interface AddComponent : Engines::Component { - Adder Addition() ; - boolean AdditionObjRef1( out Adder anAdder ) ; - void AdditionObjRef2( out boolean FuncValue , out Adder anAdder ) ; double Add( in double x , in double y , out double z ) ; double AddWithoutSleep( in double x , in double y , out double z ) ; + void Setx( in double x ) ; + void Sety( in double y ) ; + double Addxy() ; + double AddyTox( in double y ) ; long Sigma( in long n ) ; double LastResult() ; + + Adder Addition() ; + boolean AdditionObjRef1( out Adder anAdder ) ; + void AdditionObjRef2( out boolean FuncValue , out Adder anAdder ) ; boolean AdditionObjRefs( in AddComponent AddComponent1 , in AddComponent Adder2 , in AddComponent Adder3 ,