mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-10 18:51:21 +03:00
0032860: Coding Rules, Extrema_GenExtPS - add exported destructor
Added eplicit destructors to classes Extrema_GenExtCS, Extrema_GenExtPS and Extrema_GenExtSS.
This commit is contained in:
parent
75e2ba1695
commit
b5204c6c37
@ -120,6 +120,15 @@ Extrema_GenExtCS::Extrema_GenExtCS()
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : ~Extrema_GenExtCS
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
Extrema_GenExtCS::~Extrema_GenExtCS()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : Extrema_GenExtCS
|
//function : Extrema_GenExtCS
|
||||||
//purpose :
|
//purpose :
|
||||||
|
@ -35,9 +35,12 @@ public:
|
|||||||
|
|
||||||
DEFINE_STANDARD_ALLOC
|
DEFINE_STANDARD_ALLOC
|
||||||
|
|
||||||
|
//! Empty constructor.
|
||||||
Standard_EXPORT Extrema_GenExtCS();
|
Standard_EXPORT Extrema_GenExtCS();
|
||||||
|
|
||||||
|
//! Destructor.
|
||||||
|
Standard_EXPORT ~Extrema_GenExtCS();
|
||||||
|
|
||||||
//! It calculates all the distances.
|
//! It calculates all the distances.
|
||||||
//! The function F(u,v)=distance(S1(u1,v1),S2(u2,v2)) has an
|
//! The function F(u,v)=distance(S1(u1,v1),S2(u2,v2)) has an
|
||||||
//! extremum when gradient(F)=0. The algorithm searches
|
//! extremum when gradient(F)=0. The algorithm searches
|
||||||
|
@ -224,7 +224,19 @@ Extrema_GenExtPS::Extrema_GenExtPS()
|
|||||||
myAlgo = Extrema_ExtAlgo_Grad;
|
myAlgo = Extrema_ExtAlgo_Grad;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : ~Extrema_GenExtPS
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
Extrema_GenExtPS::~Extrema_GenExtPS()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : Extrema_GenExtPS
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
Extrema_GenExtPS::Extrema_GenExtPS (const gp_Pnt& P,
|
Extrema_GenExtPS::Extrema_GenExtPS (const gp_Pnt& P,
|
||||||
const Adaptor3d_Surface& S,
|
const Adaptor3d_Surface& S,
|
||||||
const Standard_Integer NbU,
|
const Standard_Integer NbU,
|
||||||
|
@ -37,8 +37,12 @@ public:
|
|||||||
|
|
||||||
DEFINE_STANDARD_ALLOC
|
DEFINE_STANDARD_ALLOC
|
||||||
|
|
||||||
|
//! Empty constructor.
|
||||||
Standard_EXPORT Extrema_GenExtPS();
|
Standard_EXPORT Extrema_GenExtPS();
|
||||||
|
|
||||||
|
//! Destructor.
|
||||||
|
Standard_EXPORT ~Extrema_GenExtPS();
|
||||||
|
|
||||||
//! It calculates all the distances.
|
//! It calculates all the distances.
|
||||||
//! The function F(u,v)=distance(P,S(u,v)) has an
|
//! The function F(u,v)=distance(P,S(u,v)) has an
|
||||||
//! extremum when gradient(F)=0. The algorithm searches
|
//! extremum when gradient(F)=0. The algorithm searches
|
||||||
|
@ -118,6 +118,15 @@ Extrema_GenExtSS::Extrema_GenExtSS()
|
|||||||
myInit = Standard_False;
|
myInit = Standard_False;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// =======================================================================
|
||||||
|
// function : ~Extrema_GenExtSS
|
||||||
|
// purpose :
|
||||||
|
// =======================================================================
|
||||||
|
Extrema_GenExtSS::~Extrema_GenExtSS()
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
//=======================================================================
|
//=======================================================================
|
||||||
//function : Extrema_GenExtSS
|
//function : Extrema_GenExtSS
|
||||||
//purpose :
|
//purpose :
|
||||||
|
@ -36,9 +36,12 @@ public:
|
|||||||
|
|
||||||
DEFINE_STANDARD_ALLOC
|
DEFINE_STANDARD_ALLOC
|
||||||
|
|
||||||
|
//! Empty constructor.
|
||||||
Standard_EXPORT Extrema_GenExtSS();
|
Standard_EXPORT Extrema_GenExtSS();
|
||||||
|
|
||||||
|
//! Destructor.
|
||||||
|
Standard_EXPORT ~Extrema_GenExtSS();
|
||||||
|
|
||||||
//! It calculates all the distances.
|
//! It calculates all the distances.
|
||||||
//! The function F(u,v)=distance(S1(u1,v1),S2(u2,v2)) has an
|
//! The function F(u,v)=distance(S1(u1,v1),S2(u2,v2)) has an
|
||||||
//! extremum when gradient(F)=0. The algorithm searches
|
//! extremum when gradient(F)=0. The algorithm searches
|
||||||
|
Loading…
x
Reference in New Issue
Block a user