1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00

0026595: Lost some comments in OCCT-code after cdl elimination

Recovered comments for instance classes from CDL generic classes.
This commit is contained in:
rkv
2015-10-14 17:48:41 +03:00
committed by bugmaster
parent 10dbdf3496
commit 36b9ff756a
251 changed files with 8209 additions and 0 deletions

View File

@@ -39,16 +39,24 @@ class GeomAdaptor_GHCurve : public Adaptor3d_HCurve
public:
//! Creates an empty GenHCurve.
Standard_EXPORT GeomAdaptor_GHCurve();
//! Creates a GenHCurve from a Curve
Standard_EXPORT GeomAdaptor_GHCurve(const GeomAdaptor_Curve& C);
//! Sets the field of the GenHCurve.
Standard_EXPORT void Set (const GeomAdaptor_Curve& C);
//! Returns the curve used to create the GenHCurve.
//! This is redefined from HCurve, cannot be inline.
Standard_EXPORT const Adaptor3d_Curve& Curve() const;
//! Returns the curve used to create the GenHCurve.
//! This is redefined from HCurve, cannot be inline.
Standard_EXPORT Adaptor3d_Curve& GetCurve();
//! Returns the curve used to create the GenHCurve.
GeomAdaptor_Curve& ChangeCurve();

View File

@@ -39,14 +39,20 @@ class GeomAdaptor_GHSurface : public Adaptor3d_HSurface
public:
//! Creates an empty GenHSurface.
Standard_EXPORT GeomAdaptor_GHSurface();
//! Creates a GenHSurface from a Surface.
Standard_EXPORT GeomAdaptor_GHSurface(const GeomAdaptor_Surface& S);
//! Sets the field of the GenHSurface.
Standard_EXPORT void Set (const GeomAdaptor_Surface& S);
//! Returns a reference to the Surface inside the HSurface.
//! This is redefined from HSurface, cannot be inline.
Standard_EXPORT const Adaptor3d_Surface& Surface() const;
//! Returns the surface used to create the GenHSurface.
GeomAdaptor_Surface& ChangeSurface();