1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-10 18:51:21 +03:00
occt/src/STEPConstruct/STEPConstruct.hxx
dpasukhi a5a7b3185b Coding - Apply .clang-format formatting #286
Update empty method guards to new style with regex (see PR).
Used clang-format 18.1.8.
New actions to validate code formatting is added.
Update .clang-format with disabling of include sorting.
  It is temporary changes, then include will be sorted.
Apply formatting for /src and /tools folder.
The files with .hxx,.cxx,.lxx,.h,.pxx,.hpp,*.cpp extensions.
2025-01-26 00:43:57 +00:00

74 lines
3.0 KiB
C++

// Created on: 1999-11-17
// Created by: Andrey BETENEV
// Copyright (c) 1999 Matra Datavision
// Copyright (c) 1999-2014 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 _STEPConstruct_HeaderFile
#define _STEPConstruct_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Handle.hxx>
#include <Standard_Boolean.hxx>
class StepRepr_RepresentationItem;
class Transfer_FinderProcess;
class TopoDS_Shape;
class TopLoc_Location;
class Transfer_TransientProcess;
class Transfer_Binder;
class StepShape_ShapeDefinitionRepresentation;
class StepShape_ContextDependentShapeRepresentation;
//! Defines tools for creation and investigation STEP constructs
//! used for representing various kinds of data, such as product and
//! assembly structure, unit contexts, associated information
//! The creation of these structures is made according to currently
//! active schema (AP203 or AP214 CD2 or DIS)
//! This is taken from parameter write.step.schema
class STEPConstruct
{
public:
DEFINE_STANDARD_ALLOC
//! Returns STEP entity of the (sub)type of RepresentationItem
//! which is a result of the translation of the Shape, or Null if
//! no result is recorded
Standard_EXPORT static Handle(StepRepr_RepresentationItem) FindEntity(
const Handle(Transfer_FinderProcess)& FinderProcess,
const TopoDS_Shape& Shape);
//! The same as above, but in the case if item not found, repeats
//! search on the same shape without location. The Loc corresponds to the
//! location with which result is found (either location of the Shape,
//! or Null)
Standard_EXPORT static Handle(StepRepr_RepresentationItem) FindEntity(
const Handle(Transfer_FinderProcess)& FinderProcess,
const TopoDS_Shape& Shape,
TopLoc_Location& Loc);
//! Returns Shape resulting from given STEP entity (Null if not mapped)
Standard_EXPORT static TopoDS_Shape FindShape(
const Handle(Transfer_TransientProcess)& TransientProcess,
const Handle(StepRepr_RepresentationItem)& item);
//! Find CDSR corresponding to the component in the specified assembly
Standard_EXPORT static Standard_Boolean FindCDSR(
const Handle(Transfer_Binder)& ComponentBinder,
const Handle(StepShape_ShapeDefinitionRepresentation)& AssemblySDR,
Handle(StepShape_ContextDependentShapeRepresentation)& ComponentCDSR);
};
#endif // _STEPConstruct_HeaderFile