Integration of OCCT 6.5.0 from SVN

This commit is contained in:
bugmaster
2011-03-16 07:30:28 +00:00
committed by bugmaster
parent 4903637061
commit 7fd59977df
16375 changed files with 3882564 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
-- File: SelectModelRoots.cdl
-- Created: Tue Nov 17 18:52:56 1992
-- Author: Christian CAILLET
-- <cky@topsn2>
---Copyright: Matra Datavision 1992
class SelectModelRoots from IFSelect inherits SelectBase
---Purpose : A SelectModelRoots gets all the Root Entities of an
-- InterfaceModel. Remember that a "Root Entity" is defined as
-- having no Sharing Entity (if there is a Loop between Entities,
-- none of them can be a "Root").
uses AsciiString from TCollection, EntityIterator, Graph
is
Create returns mutable SelectModelRoots;
---Purpose : Creates a SelectModelRoot
RootResult (me; G : Graph) returns EntityIterator;
---Purpose : Returns the list of selected entities : the Roots of the Model
-- (note that this result assures naturally uniqueness)
Label (me) returns AsciiString from TCollection;
---Purpose : Returns a text defining the criterium : "Model Roots"
end SelectModelRoots;