1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-09-03 14:10:33 +03:00

0031789: Coding Rules - remove redundant Standard_EXPORT from TKMesh

- Standard_EXPORT which were specified for inline methods were deleted.
- ALL occurrences of DEFINE_STANDARD_RTTI_INLINE were replaced by DEFINE_STANDARD_RTTIEXT in header files and IMPLEMENT_STANDARD_RTTIEXT in source files
- ALL occurrences of "inline" keyword were deleted where it didn't not cause a linkage errors
- Added source files for classes that were without them for IMPLEMENT_STANDARD_RTTIEXT
This commit is contained in:
mkrylova
2020-09-24 17:14:15 +03:00
committed by abv
parent 42624fdc75
commit 4945e8be99
121 changed files with 729 additions and 327 deletions

View File

@@ -70,7 +70,7 @@ public:
//! Returns point in 3d space corresponded to the given
//! point defined in parameteric space of surface.
inline gp_Pnt Point(const gp_Pnt2d& thePoint2d) const
gp_Pnt Point(const gp_Pnt2d& thePoint2d) const
{
return GetSurface()->Value(thePoint2d.X(), thePoint2d.Y());
}
@@ -85,36 +85,36 @@ protected:
public:
//! Returns face model.
inline const IMeshData::IFaceHandle& GetDFace() const
const IMeshData::IFaceHandle& GetDFace() const
{
return myDFace;
}
//! Returns surface.
inline const Handle(BRepAdaptor_HSurface)& GetSurface() const
const Handle(BRepAdaptor_HSurface)& GetSurface() const
{
return myDFace->GetSurface();
}
//! Returns U range.
inline const std::pair<Standard_Real, Standard_Real>& GetRangeU() const
const std::pair<Standard_Real, Standard_Real>& GetRangeU() const
{
return myRangeU;
}
//! Returns V range.
inline const std::pair<Standard_Real, Standard_Real>& GetRangeV() const
const std::pair<Standard_Real, Standard_Real>& GetRangeV() const
{
return myRangeV;
}
//! Returns delta.
inline const std::pair<Standard_Real, Standard_Real>& GetDelta () const
const std::pair<Standard_Real, Standard_Real>& GetDelta () const
{
return myDelta;
}
inline const std::pair<Standard_Real, Standard_Real>& GetToleranceUV() const
const std::pair<Standard_Real, Standard_Real>& GetToleranceUV() const
{
return myTolerance;
}