mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-08-09 13:22:24 +03:00
0026912: CLang 3.6.2 compiler warning [-Winconsistent-missing-override]
This commit is contained in:
@@ -50,23 +50,23 @@ public:
|
||||
//! by co-ordinates. For element this method must return all its nodes co-ordinates in the strict order: X, Y, Z and
|
||||
//! with nodes order is the same as in wire bounding the face or link. NbNodes is number of nodes of element.
|
||||
//! It is recommended to return 1 for node. Type is an element type.
|
||||
Standard_EXPORT Standard_Boolean GetGeom (const Standard_Integer ID, const Standard_Boolean IsElement, TColStd_Array1OfReal& Coords, Standard_Integer& NbNodes, MeshVS_EntityType& Type) const;
|
||||
Standard_EXPORT Standard_Boolean GetGeom (const Standard_Integer ID, const Standard_Boolean IsElement, TColStd_Array1OfReal& Coords, Standard_Integer& NbNodes, MeshVS_EntityType& Type) const Standard_OVERRIDE;
|
||||
|
||||
//! This method is similar to GetGeom, but returns only element or node type. This method is provided for
|
||||
//! a fine performance.
|
||||
Standard_EXPORT Standard_Boolean GetGeomType (const Standard_Integer ID, const Standard_Boolean IsElement, MeshVS_EntityType& Type) const;
|
||||
Standard_EXPORT Standard_Boolean GetGeomType (const Standard_Integer ID, const Standard_Boolean IsElement, MeshVS_EntityType& Type) const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns by number an address of any entity which represents element or node data structure.
|
||||
Standard_EXPORT Standard_Address GetAddr (const Standard_Integer ID, const Standard_Boolean IsElement) const;
|
||||
Standard_EXPORT Standard_Address GetAddr (const Standard_Integer ID, const Standard_Boolean IsElement) const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns information about what node this element consist of.
|
||||
Standard_EXPORT virtual Standard_Boolean GetNodesByElement (const Standard_Integer ID, TColStd_Array1OfInteger& NodeIDs, Standard_Integer& NbNodes) const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns map of all nodes the object consist of.
|
||||
Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllNodes() const;
|
||||
Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllNodes() const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns map of all elements the object consist of.
|
||||
Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllElements() const;
|
||||
Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllElements() const Standard_OVERRIDE;
|
||||
|
||||
//! This method calculates normal of face, which is using for correct reflection presentation.
|
||||
//! There is default method, for advance reflection this method can be redefined.
|
||||
|
@@ -51,7 +51,7 @@ public:
|
||||
//! by co-ordinates. For element this method must return all its nodes co-ordinates in the strict order: X, Y, Z and
|
||||
//! with nodes order is the same as in wire bounding the face or link. NbNodes is number of nodes of element.
|
||||
//! It is recommended to return 1 for node. Type is an element type.
|
||||
Standard_EXPORT Standard_Boolean GetGeom (const Standard_Integer theID, const Standard_Boolean theIsElement, TColStd_Array1OfReal& theCoords, Standard_Integer& theNbNodes, MeshVS_EntityType& theType) const;
|
||||
Standard_EXPORT Standard_Boolean GetGeom (const Standard_Integer theID, const Standard_Boolean theIsElement, TColStd_Array1OfReal& theCoords, Standard_Integer& theNbNodes, MeshVS_EntityType& theType) const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns topology information about 3D-element
|
||||
//! Returns false if element with ID isn't 3D or because other troubles
|
||||
@@ -59,19 +59,19 @@ public:
|
||||
|
||||
//! This method is similar to GetGeom, but returns only element or node type. This method is provided for
|
||||
//! a fine performance.
|
||||
Standard_EXPORT Standard_Boolean GetGeomType (const Standard_Integer theID, const Standard_Boolean theIsElement, MeshVS_EntityType& theType) const;
|
||||
Standard_EXPORT Standard_Boolean GetGeomType (const Standard_Integer theID, const Standard_Boolean theIsElement, MeshVS_EntityType& theType) const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns by number an address of any entity which represents element or node data structure.
|
||||
Standard_EXPORT Standard_Address GetAddr (const Standard_Integer theID, const Standard_Boolean theIsElement) const;
|
||||
Standard_EXPORT Standard_Address GetAddr (const Standard_Integer theID, const Standard_Boolean theIsElement) const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns information about what node this element consist of.
|
||||
Standard_EXPORT virtual Standard_Boolean GetNodesByElement (const Standard_Integer theID, TColStd_Array1OfInteger& theNodeIDs, Standard_Integer& theNbNodes) const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns map of all nodes the object consist of.
|
||||
Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllNodes() const;
|
||||
Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllNodes() const Standard_OVERRIDE;
|
||||
|
||||
//! This method returns map of all elements the object consist of.
|
||||
Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllElements() const;
|
||||
Standard_EXPORT const TColStd_PackedMapOfInteger& GetAllElements() const Standard_OVERRIDE;
|
||||
|
||||
//! This method calculates normal of face, which is using for correct reflection presentation.
|
||||
//! There is default method, for advance reflection this method can be redefined.
|
||||
|
Reference in New Issue
Block a user