1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-05 18:16:23 +03:00

0030553: Coding - TopOpeBRepDS_Surface missing default initalizations

All class fields are now initialized within every TopOpeBRepDS_Surface constructor.
This commit is contained in:
kgv 2019-03-11 23:20:44 +03:00 committed by apn
parent c3c2b331cd
commit a98b97f5da
2 changed files with 22 additions and 90 deletions

View File

@ -14,15 +14,17 @@
// Alternatively, this file may be used under the terms of Open CASCADE // Alternatively, this file may be used under the terms of Open CASCADE
// commercial license or contractual agreement. // commercial license or contractual agreement.
#include <TopOpeBRepDS_Surface.hxx>
#include <Geom_Surface.hxx> #include <Geom_Surface.hxx>
#include <TopOpeBRepDS_Surface.hxx>
//======================================================================= //=======================================================================
//function : TopOpeBRepDS_Surface //function : TopOpeBRepDS_Surface
//purpose : //purpose :
//======================================================================= //=======================================================================
TopOpeBRepDS_Surface::TopOpeBRepDS_Surface() TopOpeBRepDS_Surface::TopOpeBRepDS_Surface()
: myTolerance (0.0),
myKeep (Standard_False)
{ {
} }
@ -31,24 +33,26 @@ TopOpeBRepDS_Surface::TopOpeBRepDS_Surface()
//purpose : //purpose :
//======================================================================= //=======================================================================
TopOpeBRepDS_Surface::TopOpeBRepDS_Surface TopOpeBRepDS_Surface::TopOpeBRepDS_Surface (const Handle(Geom_Surface)& theSurface,
(const Handle(Geom_Surface)& P, const Standard_Real theTolerance)
const Standard_Real T) : : mySurface (theSurface),
mySurface(P), myTolerance (theTolerance),
myTolerance(T) myKeep (Standard_False)
{ {
} }
//
//modified by NIZNHY-PKV Tue Oct 30 09:28:33 2001 f
//======================================================================= //=======================================================================
//function : TopOpeBRepDS_Surface::TopOpeBRepDS_Surface //function : TopOpeBRepDS_Surface::TopOpeBRepDS_Surface
//purpose : //purpose :
//======================================================================= //=======================================================================
TopOpeBRepDS_Surface::TopOpeBRepDS_Surface (const TopOpeBRepDS_Surface& Other) TopOpeBRepDS_Surface::TopOpeBRepDS_Surface (const TopOpeBRepDS_Surface& theOther)
: mySurface (theOther.mySurface),
myTolerance (theOther.myTolerance),
myKeep (theOther.myKeep)
{ {
Assign(Other); //
} }
//======================================================================= //=======================================================================
//function : Assign //function : Assign
//purpose : //purpose :
@ -59,55 +63,3 @@ void TopOpeBRepDS_Surface::Assign(const TopOpeBRepDS_Surface& Other)
myTolerance=Other.myTolerance; myTolerance=Other.myTolerance;
myKeep=Other.myKeep; myKeep=Other.myKeep;
} }
//modified by NIZNHY-PKV Tue Oct 30 09:28:20 2001 t
//
//=======================================================================
//function : Surface
//purpose :
//=======================================================================
const Handle(Geom_Surface)& TopOpeBRepDS_Surface::Surface()const
{
return mySurface;
}
//=======================================================================
//function : Tolerance
//purpose :
//=======================================================================
Standard_Real TopOpeBRepDS_Surface::Tolerance()const
{
return myTolerance;
}
//=======================================================================
//function : Tolerance
//purpose :
//=======================================================================
void TopOpeBRepDS_Surface::Tolerance(const Standard_Real T)
{
myTolerance = T;
}
//=======================================================================
//function : Keep
//purpose :
//=======================================================================
Standard_Boolean TopOpeBRepDS_Surface::Keep() const
{
return myKeep;
}
//=======================================================================
//function : ChangeKeep
//purpose :
//=======================================================================
void TopOpeBRepDS_Surface::ChangeKeep(const Standard_Boolean b)
{
myKeep = b;
}

View File

@ -25,7 +25,6 @@
#include <Standard_Boolean.hxx> #include <Standard_Boolean.hxx>
class Geom_Surface; class Geom_Surface;
//! A Geom surface and a tolerance. //! A Geom surface and a tolerance.
class TopOpeBRepDS_Surface class TopOpeBRepDS_Surface
{ {
@ -33,7 +32,6 @@ public:
DEFINE_STANDARD_ALLOC DEFINE_STANDARD_ALLOC
Standard_EXPORT TopOpeBRepDS_Surface(); Standard_EXPORT TopOpeBRepDS_Surface();
Standard_EXPORT TopOpeBRepDS_Surface(const Handle(Geom_Surface)& P, const Standard_Real T); Standard_EXPORT TopOpeBRepDS_Surface(const Handle(Geom_Surface)& P, const Standard_Real T);
@ -46,41 +44,23 @@ void operator= (const TopOpeBRepDS_Surface& Other)
Assign(Other); Assign(Other);
} }
Standard_EXPORT const Handle(Geom_Surface)& Surface() const; const Handle(Geom_Surface)& Surface() const { return mySurface; }
Standard_EXPORT Standard_Real Tolerance() const; Standard_Real Tolerance() const { return myTolerance; }
//! Update the tolerance //! Update the tolerance
Standard_EXPORT void Tolerance (const Standard_Real tol); void Tolerance (Standard_Real theTol) { myTolerance = theTol; }
Standard_EXPORT Standard_Boolean Keep() const;
Standard_EXPORT void ChangeKeep (const Standard_Boolean B);
protected:
Standard_Boolean Keep() const { return myKeep; }
void ChangeKeep (Standard_Boolean theToKeep) { myKeep = theToKeep; }
private: private:
Handle(Geom_Surface) mySurface; Handle(Geom_Surface) mySurface;
Standard_Real myTolerance; Standard_Real myTolerance;
Standard_Boolean myKeep; Standard_Boolean myKeep;
}; };
#endif // _TopOpeBRepDS_Surface_HeaderFile #endif // _TopOpeBRepDS_Surface_HeaderFile