0024057: Eliminate compiler warning C4100 in MSVC++ with warning level 4
[occt.git] / src / StepElement / StepElement_CurveElementFreedomMember.cxx
1 // Created on: 2002-12-10
2 // Created by: data exchange team
3 // Copyright (c) 2002-2012 OPEN CASCADE SAS
4 //
5 // The content of this file is subject to the Open CASCADE Technology Public
6 // License Version 6.5 (the "License"). You may not use the content of this file
7 // except in compliance with the License. Please obtain a copy of the License
8 // at http://www.opencascade.org and read it completely before using this file.
9 //
10 // The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
11 // main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
12 //
13 // The Original Code and all software distributed under the License is
14 // distributed on an "AS IS" basis, without warranty of any kind, and the
15 // Initial Developer hereby disclaims all such warranties, including without
16 // limitation, any warranties of merchantability, fitness for a particular
17 // purpose or non-infringement. Please see the License for the specific terms
18 // and conditions governing the rights and limitations under the License.
19
20 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V2.0
21
22 #include <StepElement_CurveElementFreedomMember.ixx>
23 #include <TCollection_HAsciiString.hxx>
24
25 static Standard_CString ECEF = "ENUMERATED_CURVE_ELEMENT_FREEDOM";
26 static Standard_CString ADDF = "APPLICATION_DEFINED_DEGREE_OF_FREEDOM";
27
28 //=======================================================================
29 //function : StepElement_CurveElementFreedomMember
30 //purpose  : 
31 //=======================================================================
32
33 StepElement_CurveElementFreedomMember::StepElement_CurveElementFreedomMember () : mycase(0) 
34 {
35 }
36
37 //=======================================================================
38 //function : HasName
39 //purpose  : 
40 //=======================================================================
41
42 Standard_Boolean StepElement_CurveElementFreedomMember::HasName() const
43 {
44  return mycase >0;
45 }
46
47 //=======================================================================
48 //function : Name
49 //purpose  : 
50 //=======================================================================
51
52 Standard_CString StepElement_CurveElementFreedomMember::Name() const
53 {
54   switch(mycase)  {
55     case 1  : return ECEF;
56     case 2  : return ADDF;
57     default : break;
58   }
59   return "";
60 }
61
62 //=======================================================================
63 //function : CompareNames
64 //purpose  : 
65 //=======================================================================
66
67 static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &/*numen*/) 
68 {
69   Standard_Integer thecase =0;
70   if (!name || name[0] == '\0') thecase = 0;
71   
72   else if(!strcmp (name,ECEF)){
73     thecase = 1;
74   }
75   else if(!strcmp (name,ADDF)){
76     thecase = 2;
77   }
78   return thecase;
79 }
80
81 //=======================================================================
82 //function : SetName
83 //purpose  : 
84 //=======================================================================
85
86 Standard_Boolean StepElement_CurveElementFreedomMember::SetName(const Standard_CString name) 
87 {
88   Standard_Integer numit =0;
89   mycase = CompareNames(name,numit);
90   if(numit) SetInteger(numit);
91   return (mycase >0);
92 }
93
94 //=======================================================================
95 //function : Matches
96 //purpose  : 
97 //=======================================================================
98
99 Standard_Boolean StepElement_CurveElementFreedomMember::Matches(const Standard_CString name) const
100 {
101   Standard_Integer numit =0;
102   Standard_Integer thecase = CompareNames(name,numit);
103   return (mycase==thecase);
104 }