mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-09-18 14:27:39 +03:00
0026720: Coding, STEP - non-conformant names of class fields
Names of class fields and method parameters are fixed according to coding standard.
This commit is contained in:
@@ -44,18 +44,18 @@ public:
|
||||
//! Returns field Orientation
|
||||
inline Handle(StepDimTol_RunoutZoneOrientation) Orientation () const
|
||||
{
|
||||
return orientation;
|
||||
return myOrientation;
|
||||
}
|
||||
|
||||
//! Set field Orientation
|
||||
inline void SetOrientation (const Handle(StepDimTol_RunoutZoneOrientation) &theOrientation)
|
||||
{
|
||||
orientation = theOrientation;
|
||||
myOrientation = theOrientation;
|
||||
}
|
||||
|
||||
DEFINE_STANDARD_RTTI(StepDimTol_ToleranceZoneDefinition, StepDimTol_ToleranceZoneDefinition)
|
||||
|
||||
private:
|
||||
Handle(StepDimTol_RunoutZoneOrientation) orientation;
|
||||
Handle(StepDimTol_RunoutZoneOrientation) myOrientation;
|
||||
};
|
||||
#endif // _StepDimTol_RunoutToleranceZone_HeaderFile
|
||||
|
Reference in New Issue
Block a user