Warnings on vc14 were eliminated
[occt.git] / src / StepElement / StepElement_CurveElementFreedomMember.cxx
CommitLineData
b311480e 1// Created on: 2002-12-10
2// Created by: data exchange team
973c2be1 3// Copyright (c) 2002-2014 OPEN CASCADE SAS
b311480e 4//
973c2be1 5// This file is part of Open CASCADE Technology software library.
b311480e 6//
d5f74e42 7// This library is free software; you can redistribute it and/or modify it under
8// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 9// by the Free Software Foundation, with special exception defined in the file
10// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
11// distribution for complete text of the license and disclaimer of any warranty.
b311480e 12//
973c2be1 13// Alternatively, this file may be used under the terms of Open CASCADE
14// commercial license or contractual agreement.
b311480e 15
7fd59977 16// Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V2.0
7fd59977 17
42cf5bc1 18#include <Standard_Type.hxx>
19#include <StepElement_CurveElementFreedomMember.hxx>
7fd59977 20#include <TCollection_HAsciiString.hxx>
21
92efcf78 22IMPLEMENT_STANDARD_RTTIEXT(StepElement_CurveElementFreedomMember,StepData_SelectNamed)
23
7fd59977 24static Standard_CString ECEF = "ENUMERATED_CURVE_ELEMENT_FREEDOM";
25static Standard_CString ADDF = "APPLICATION_DEFINED_DEGREE_OF_FREEDOM";
26
27//=======================================================================
28//function : StepElement_CurveElementFreedomMember
29//purpose :
30//=======================================================================
31
32StepElement_CurveElementFreedomMember::StepElement_CurveElementFreedomMember () : mycase(0)
33{
34}
35
36//=======================================================================
37//function : HasName
38//purpose :
39//=======================================================================
40
41Standard_Boolean StepElement_CurveElementFreedomMember::HasName() const
42{
43 return mycase >0;
44}
45
46//=======================================================================
47//function : Name
48//purpose :
49//=======================================================================
50
51Standard_CString StepElement_CurveElementFreedomMember::Name() const
52{
53 switch(mycase) {
54 case 1 : return ECEF;
55 case 2 : return ADDF;
56 default : break;
57 }
58 return "";
59}
60
61//=======================================================================
62//function : CompareNames
63//purpose :
64//=======================================================================
65
35e08fe8 66static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &/*numen*/)
7fd59977 67{
68 Standard_Integer thecase =0;
69 if (!name || name[0] == '\0') thecase = 0;
70
71 else if(!strcmp (name,ECEF)){
72 thecase = 1;
73 }
74 else if(!strcmp (name,ADDF)){
75 thecase = 2;
76 }
77 return thecase;
78}
79
80//=======================================================================
81//function : SetName
82//purpose :
83//=======================================================================
84
85Standard_Boolean StepElement_CurveElementFreedomMember::SetName(const Standard_CString name)
86{
87 Standard_Integer numit =0;
88 mycase = CompareNames(name,numit);
89 if(numit) SetInteger(numit);
90 return (mycase >0);
91}
92
93//=======================================================================
94//function : Matches
95//purpose :
96//=======================================================================
97
98Standard_Boolean StepElement_CurveElementFreedomMember::Matches(const Standard_CString name) const
99{
100 Standard_Integer numit =0;
101 Standard_Integer thecase = CompareNames(name,numit);
102 return (mycase==thecase);
103}