mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-07-29 08:59:07 +08:00
The constructors of classes from following files have been fixed to ensure that all non-static fields are initialized:
Adaptor2d_Line2d.cxx
Adaptor3d_IsoCurve.cxx
Adaptor3d_OffsetCurve.cxx
AdvApp2Var_ApproxAFunc2Var.cxx
AIS_Dimension.cxx
AIS_InteractiveContext.cxx
Aspect_DisplayConnection.cxx
BiTgte_CurveOnEdge.cxx
BiTgte_CurveOnVertex.cxx
BRepAdaptor_CompCurve.cxx
BRepMesh_Circle.hxx
BRepMesh_Delaun.cxx
BRepToIGES_BREntity.cxx
ChFi2d_AnaFilletAlgo.cxx
ChFi2d_ChamferAPI.cxx
ChFi2d_FilletAlgo.cxx
ChFi2d_FilletAlgo.hxx
Extrema_ExtPExtS.cxx
Font_FTFont.cxx
GccEnt_QualifiedCirc.cxx
Geom2dAdaptor_Curve.cxx
IGESData_IGESEntity.cxx
IGESData_DefSwitch.cxx
IGESToBRep_CurveAndSurface.cxx
LDOM_XmlReader.cxx
math_TrigonometricFunctionRoots.cxx
NCollection_ListNode.hxx
ProjLib_CompProjectedCurve.cxx
ProjLib_ComputeApproxOnPolarSurface.cxx
Select3D_Box2d.hxx
Select3D_PointData.hxx
80 lines
2.5 KiB
C++
80 lines
2.5 KiB
C++
// Copyright (c) 1999-2014 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#include <IGESData_DefSwitch.ixx>
|
|
|
|
// DefSwitch : represente une definition, soit vide (-> valeur = 0),
|
|
// soit comme rang dans une table (-> valeur > 0 ce rang),
|
|
// soit comme reference (-> valeur < 0), la reference elle-meme est ailleurs
|
|
|
|
|
|
//=======================================================================
|
|
//function : IGESData_DefSwitch
|
|
//purpose : Default constructor.
|
|
//=======================================================================
|
|
IGESData_DefSwitch::IGESData_DefSwitch()
|
|
: theval(0)
|
|
{
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetVoid
|
|
//purpose :
|
|
//=======================================================================
|
|
void IGESData_DefSwitch::SetVoid()
|
|
{
|
|
theval = 0;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetReference
|
|
//purpose :
|
|
//=======================================================================
|
|
void IGESData_DefSwitch::SetReference()
|
|
{
|
|
theval = -1;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : SetRank
|
|
//purpose :
|
|
//=======================================================================
|
|
void IGESData_DefSwitch::SetRank(const Standard_Integer theRank)
|
|
{
|
|
theval = theRank;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : DefType
|
|
//purpose :
|
|
//=======================================================================
|
|
IGESData_DefType IGESData_DefSwitch::DefType() const
|
|
{
|
|
if (theval < 0)
|
|
return IGESData_DefReference;
|
|
|
|
if (theval > 0)
|
|
return IGESData_DefValue;
|
|
|
|
return IGESData_DefVoid;
|
|
}
|
|
|
|
//=======================================================================
|
|
//function : Value
|
|
//purpose :
|
|
//=======================================================================
|
|
Standard_Integer IGESData_DefSwitch::Value() const
|
|
{
|
|
return theval;
|
|
}
|