mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-04 18:06:22 +03:00
Restored possibility to have out-of-line implementation of DynamicCast() and STANDART_TYPE(): - Macro STANDARD_TYPE() now resolves to function get_type_descriptor() of the class - Macro DEFINE_STANDARD_RTTI is replaced by two variants: - DEFINE_STANDARD_RTTI_INLINE works as before, defining DynamicCast() and get_type_descriptor() as inline functions - DEFINE_STANDARD_RTTIEXT declares DynamicCast() and get_type_descriptor() as exported - Macro IMPLEMENT_STANDARD_RTTIEXT provides definition of DynamicCast() and get_type_descriptor() for a class Upgrade script amended to replace DEFINE_STANDARD_RTTI by pair of DEFINE_STANDARD_RTTIEXT / IMPLEMENT_STANDARD_RTTIEXT if source file with the same name as header is found in the same folder, and by DEFINE_STANDARD_RTTI_INLINE if either source is not found or class is defined in the source (i.e. not in header) Upgrade tool improved to recognize include statements with path prefix, like #include <occt/gp_Pnt.hxx> Code corrected to eliminate warnings reported by upgrade tool. Template of CXX file for testing upgrade tool added. Documentation of upgrade procedure updated.
63 lines
2.2 KiB
C++
63 lines
2.2 KiB
C++
// Created on: 2015-07-13
|
|
// Created by: Irina KRYLOVA
|
|
// Copyright (c) 2015 OPEN CASCADE SAS
|
|
//
|
|
// This file is part of Open CASCADE Technology software library.
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify it under
|
|
// the terms of the GNU Lesser General Public License version 2.1 as published
|
|
// by the Free Software Foundation, with special exception defined in the file
|
|
// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
|
|
// distribution for complete text of the license and disclaimer of any warranty.
|
|
//
|
|
// Alternatively, this file may be used under the terms of Open CASCADE
|
|
// commercial license or contractual agreement.
|
|
|
|
#ifndef _StepDimTol_RunoutZoneDefinition_HeaderFile
|
|
#define _StepDimTol_RunoutZoneDefinition_HeaderFile
|
|
|
|
#include <Standard.hxx>
|
|
#include <Standard_Type.hxx>
|
|
|
|
#include <StepDimTol_RunoutZoneOrientation.hxx>
|
|
#include <StepDimTol_ToleranceZoneDefinition.hxx>
|
|
#include <Standard_Integer.hxx>
|
|
|
|
class StepRepr_HArray1OfShapeAspect;
|
|
|
|
class StepDimTol_RunoutZoneDefinition;
|
|
DEFINE_STANDARD_HANDLE(StepDimTol_RunoutZoneDefinition, StepDimTol_ToleranceZoneDefinition)
|
|
|
|
//! Representation of STEP entity ToleranceZoneDefinition
|
|
class StepDimTol_RunoutZoneDefinition : public StepDimTol_ToleranceZoneDefinition
|
|
{
|
|
|
|
public:
|
|
|
|
//! Empty constructor
|
|
Standard_EXPORT StepDimTol_RunoutZoneDefinition();
|
|
|
|
//! Initialize all fields (own and inherited)
|
|
Standard_EXPORT void Init (const Handle(StepDimTol_ToleranceZone)& theZone,
|
|
const Handle(StepRepr_HArray1OfShapeAspect)& theBoundaries,
|
|
const Handle(StepDimTol_RunoutZoneOrientation)& theOrientation);
|
|
|
|
//! Returns field Orientation
|
|
inline Handle(StepDimTol_RunoutZoneOrientation) Orientation () const
|
|
{
|
|
return myOrientation;
|
|
}
|
|
|
|
//! Set field Orientation
|
|
inline void SetOrientation (const Handle(StepDimTol_RunoutZoneOrientation) &theOrientation)
|
|
{
|
|
myOrientation = theOrientation;
|
|
}
|
|
|
|
DEFINE_STANDARD_RTTIEXT(StepDimTol_RunoutZoneDefinition,StepDimTol_ToleranceZoneDefinition)
|
|
|
|
private:
|
|
Handle(StepDimTol_RunoutZoneOrientation) myOrientation;
|
|
};
|
|
#endif // _StepDimTol_RunoutToleranceZone_HeaderFile
|