1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-29 14:00:49 +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

31
src/Units/Units_Lexicon.lxx Executable file
View File

@@ -0,0 +1,31 @@
// File: Units_Lexicon.lxx
// Created: Wed Jun 24 12:47:40 1992
// Author: Gilles DEBARBOUILLE
// <gde@phobox>
#include <Units_TokensSequence.hxx>
#include <Units_Token.hxx>
//=======================================================================
//function : Sequence
//purpose :
//=======================================================================
inline Handle(Units_TokensSequence) Units_Lexicon::Sequence() const
{
return thesequenceoftokens;
}
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
inline void Units_Lexicon::Dump() const
{
Standard_Integer index;
cout<<" LEXICON : "<<endl;
for(index=1;index<=thesequenceoftokens->Length();index++)
thesequenceoftokens->Value(index)->Dump(1,0);
}