0031007: Coding - eliminate warnings issued while compiling with -pedantic flag
[occt.git] / src / Geom2dGcc / Geom2dGcc_QualifiedCurve.cxx
1 // Copyright (c) 1995-1999 Matra Datavision
2 // Copyright (c) 1999-2014 OPEN CASCADE SAS
3 //
4 // This file is part of Open CASCADE Technology software library.
5 //
6 // This library is free software; you can redistribute it and/or modify it under
7 // the terms of the GNU Lesser General Public License version 2.1 as published
8 // by the Free Software Foundation, with special exception defined in the file
9 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10 // distribution for complete text of the license and disclaimer of any warranty.
11 //
12 // Alternatively, this file may be used under the terms of Open CASCADE
13 // commercial license or contractual agreement.
14
15
16 #include <Geom2dAdaptor_Curve.hxx>
17 #include <Geom2dGcc_QualifiedCurve.hxx>
18
19 Geom2dGcc_QualifiedCurve::
20    Geom2dGcc_QualifiedCurve (const Geom2dAdaptor_Curve& Curve    ,
21                              const GccEnt_Position      Qualifier) {
22    TheQualified = Curve;
23    TheQualifier = Qualifier;
24  }
25
26 Geom2dAdaptor_Curve Geom2dGcc_QualifiedCurve::
27    Qualified () const { return TheQualified; }
28
29 GccEnt_Position Geom2dGcc_QualifiedCurve::
30    Qualifier () const { return TheQualifier; }
31
32 Standard_Boolean Geom2dGcc_QualifiedCurve::
33    IsUnqualified () const {
34      if (TheQualifier == GccEnt_unqualified ) { return Standard_True; }
35      else { return Standard_False; }
36    }
37
38 Standard_Boolean Geom2dGcc_QualifiedCurve::
39    IsEnclosing () const {
40      if (TheQualifier == GccEnt_enclosing) { return Standard_True; }
41      else { return Standard_False; }
42    }
43
44 Standard_Boolean Geom2dGcc_QualifiedCurve::
45    IsEnclosed () const {
46      if (TheQualifier == GccEnt_enclosed) { return Standard_True; }
47      else { return Standard_False; }
48    }
49
50 Standard_Boolean Geom2dGcc_QualifiedCurve::
51    IsOutside () const {
52      if (TheQualifier == GccEnt_outside) { return Standard_True; }
53      else { return Standard_False; }
54    }
55
56