]> SALOME platform Git repositories - modules/geom.git/blob - src/GEOMDS/GEOMDS_Explorer.cdl
Salome HOME
NRI : First integration.
[modules/geom.git] / src / GEOMDS / GEOMDS_Explorer.cdl
1 //  File      : GEOMDS_Explorer.cdl
2 //  Created   :
3 //  Author    : Yves FRICAUD
4 //  Project   : SALOME
5 //  Module    : GEOM
6 //  Copyright : OPEN CASCADE
7 //  $Header$
8
9 class Explorer from GEOMDS 
10
11         ---Purpose: 
12
13 uses
14     ChildIterator  from TDF,
15     Label          from TDF, 
16     ExtendedString from TCollection,
17     Shape          from TopoDS
18
19
20 is
21     Create ( Main : Label from TDF) returns Explorer from GEOMDS;
22     
23     More(me : in out) returns Boolean from Standard;
24     
25     Next(me : in out);
26         
27     Shape(me)returns Shape from TopoDS;
28     
29     Name(me) returns ExtendedString from TCollection;
30
31 fields
32     myChildIterator : ChildIterator from TDF; 
33 end Explorer;