blob: 34417000329c8b61e896428758daf2d6ad0a59d7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
// File: Units_Sentence.lxx
// Created: Wed Jun 24 12:49:05 1992
// Author: Gilles DEBARBOUILLE
// <gde@phobox>
#include <Units_TokensSequence.hxx>
#include <Units_Token.hxx>
//=======================================================================
//function : Sequence
//purpose :
//=======================================================================
inline Handle(Units_TokensSequence) Units_Sentence::Sequence() const
{
return thesequenceoftokens;
}
//=======================================================================
//function : Sequence
//purpose :
//=======================================================================
inline void Units_Sentence::Sequence
(const Handle(Units_TokensSequence)& asequenceoftokens)
{
thesequenceoftokens=asequenceoftokens;
}
//=======================================================================
//function : IsDone
//purpose :
//=======================================================================
inline Standard_Boolean Units_Sentence::IsDone() const
{
return thesequenceoftokens->Length()>0;
}
//=======================================================================
//function : Dump
//purpose :
//=======================================================================
inline void Units_Sentence::Dump() const
{
Standard_Integer index;
cout<<" UNIT SENTENCE with : "<<endl;
for(index=1;index<=thesequenceoftokens->Length();index++)
thesequenceoftokens->Value(index)->Dump(1,1);
}
|