0027961: Visualization - remove unused and no more working OpenGl_AVIWriter
[occt.git] / src / StepElement / StepElement_CurveElementFreedomMember.cxx
1 // Created on: 2002-12-10
2 // Created by: data exchange team
3 // Copyright (c) 2002-2014 OPEN CASCADE SAS
4 //
5 // This file is part of Open CASCADE Technology software library.
6 //
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
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.
12 //
13 // Alternatively, this file may be used under the terms of Open CASCADE
14 // commercial license or contractual agreement.
15
16 // Generator:   ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V2.0
17
18 #include <Standard_Type.hxx>
19 #include <StepElement_CurveElementFreedomMember.hxx>
20 #include <TCollection_HAsciiString.hxx>
21
22 IMPLEMENT_STANDARD_RTTIEXT(StepElement_CurveElementFreedomMember,StepData_SelectNamed)
23
24 static Standard_CString ECEF = "ENUMERATED_CURVE_ELEMENT_FREEDOM";
25 static Standard_CString ADDF = "APPLICATION_DEFINED_DEGREE_OF_FREEDOM";
26
27 //=======================================================================
28 //function : StepElement_CurveElementFreedomMember
29 //purpose  : 
30 //=======================================================================
31
32 StepElement_CurveElementFreedomMember::StepElement_CurveElementFreedomMember () : mycase(0) 
33 {
34 }
35
36 //=======================================================================
37 //function : HasName
38 //purpose  : 
39 //=======================================================================
40
41 Standard_Boolean StepElement_CurveElementFreedomMember::HasName() const
42 {
43  return mycase >0;
44 }
45
46 //=======================================================================
47 //function : Name
48 //purpose  : 
49 //=======================================================================
50
51 Standard_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
66 static Standard_Integer CompareNames(const Standard_CString name,Standard_Integer &/*numen*/) 
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
85 Standard_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
98 Standard_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 }