mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-06 18:26:22 +03:00
Macro NO_CXX_EXCEPTION was removed from code. Method Raise() was replaced by explicit throw statement. Method Standard_Failure::Caught() was replaced by normal C++mechanism of exception transfer. Method Standard_Failure::Caught() is deprecated now. Eliminated empty constructors. Updated samples. Eliminate empty method ChangeValue from NCollection_Map class. Removed not operable methods from NCollection classes.
57 lines
2.0 KiB
C++
57 lines
2.0 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_ParamCursor.hxx>
|
|
#include <Interface_InterfaceError.hxx>
|
|
|
|
IGESData_ParamCursor::IGESData_ParamCursor (const Standard_Integer num)
|
|
{
|
|
thestart = num; thelimit = thestart+1;
|
|
thecount = 1; theadv = Standard_True;
|
|
theisize = 1; theoffst = 0; thetsize = 1;
|
|
}
|
|
|
|
IGESData_ParamCursor::IGESData_ParamCursor
|
|
(const Standard_Integer num,
|
|
const Standard_Integer nb, const Standard_Integer size)
|
|
{
|
|
thestart = num; thelimit = num + (nb*size);
|
|
thecount = nb; theadv = Standard_True;
|
|
theisize = size; theoffst = 0; thetsize = size;
|
|
}
|
|
|
|
void IGESData_ParamCursor::SetTerm
|
|
(const Standard_Integer size, const Standard_Boolean autoadv)
|
|
{
|
|
theoffst += thetsize;
|
|
thetsize = size;
|
|
if (autoadv) theadv = (theoffst + thetsize == theisize);
|
|
if (theoffst + thetsize > theisize) throw Interface_InterfaceError("IGESDAta ParamCursor : required Term size overpass whole Item size");
|
|
}
|
|
|
|
void IGESData_ParamCursor::SetOne (const Standard_Boolean autoadv)
|
|
{ SetTerm (1, autoadv); }
|
|
|
|
void IGESData_ParamCursor::SetXY (const Standard_Boolean autoadv)
|
|
{ SetTerm (2, autoadv); }
|
|
|
|
void IGESData_ParamCursor::SetXYZ (const Standard_Boolean autoadv)
|
|
{ SetTerm (3, autoadv); }
|
|
|
|
void IGESData_ParamCursor::SetAdvance(const Standard_Boolean advance)
|
|
{ theadv = advance; }
|
|
|
|
// LA SUITE : inline , cf lxx
|
|
// (Start,Limit,Count,ItemSize,TermSize,Offset,Advance)
|