/////////////////////////////////////////////////////////// // File : Randomizer.idl // Author : Vadim SANDLER (OCN) // Created : 13/07/05 // Copyright (C) 2005 Open CASCADE /////////////////////////////////////////////////////////// #ifndef __RANDOMIZER_IDL #define __RANDOMIZER_IDL #include "SALOME_Component.idl" module RANDOMIZER_ORB { interface RANDOMIZER : Engines::Component { // Generate random 2d-point: x, y = [0,1) void InitPoint( out double theX, out double theY ); // Get next random iteration step: ret = {1,2,3} long NextIteration(); }; }; #endif // __RANDOMIZER_IDL