]> SALOME platform Git repositories - samples/component.git/commitdiff
Salome HOME
New methods for check of components instances
authorrahuel <rahuel@opencascade.com>
Wed, 19 Oct 2005 09:21:41 +0000 (09:21 +0000)
committerrahuel <rahuel@opencascade.com>
Wed, 19 Oct 2005 09:21:41 +0000 (09:21 +0000)
idl/AddComponent.idl

index b126148c388b5f2845c33a7cf972943274c702d2..0732c63e1ccf85907fbfb5d8fba85d8b9cbc7dc8 100644 (file)
@@ -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 ,