1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-09 13:22:24 +03:00

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

50
src/TShort/TShort.cdl Executable file
View File

@@ -0,0 +1,50 @@
package TShort
uses TCollection
is
-- Instantiations de TCollection --
-- ***************************** --
------------------------------------------------------------------------
--
-- Instantiations Array1 -- *************************************************************
--
class Array1OfShortReal instantiates Array1 from TCollection (ShortReal);
--
-- Instantiations HArray1 -- **************************************************************
--
class HArray1OfShortReal instantiates
HArray1 from TCollection (ShortReal, Array1OfShortReal from TShort);
--
-- Instantiations Array2 -- ***************************************************************************
--
class Array2OfShortReal instantiates
Array2 from TCollection (ShortReal);
--
-- Instantiations HArray2
-- ****************************************************************************
--
class HArray2OfShortReal instantiates
HArray2 from TCollection ( ShortReal,
Array2OfShortReal from TShort);
--
-- Instantiations Sequence *****************************************************
--
class SequenceOfShortReal instantiates
Sequence from TCollection (ShortReal);
--
-- Instantiations HSequence ***********************************************
--
class HSequenceOfShortReal instantiates
HSequence from TCollection (ShortReal,
SequenceOfShortReal from TShort);
end TShort;