Integration of OCCT 6.5.0 from SVN
[occt.git] / src / StepVisual / StepVisual_DirectionCountSelect.cxx
CommitLineData
7fd59977 1#include <StepVisual_DirectionCountSelect.hxx>
2
3StepVisual_DirectionCountSelect::StepVisual_DirectionCountSelect() {}
4
5void StepVisual_DirectionCountSelect::SetTypeOfContent(const Standard_Integer aType)
6{
7 theTypeOfContent = aType;
8}
9
10Standard_Integer StepVisual_DirectionCountSelect::TypeOfContent() const
11{
12 return theTypeOfContent;
13}
14
15Standard_Integer StepVisual_DirectionCountSelect::UDirectionCount() const
16{
17 return theUDirectionCount;
18}
19
20void StepVisual_DirectionCountSelect::SetUDirectionCount(const Standard_Integer aUDirectionCount)
21{
22 theUDirectionCount = aUDirectionCount;
23 theTypeOfContent = 1;
24}
25
26
27Standard_Integer StepVisual_DirectionCountSelect::VDirectionCount() const
28{
29 return theUDirectionCount;
30}
31
32void StepVisual_DirectionCountSelect::SetVDirectionCount(const Standard_Integer aVDirectionCount)
33{
34 theVDirectionCount = aVDirectionCount;
35 theTypeOfContent = 2;
36}
37
38