1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-03 17:56:21 +03:00
occt/src/TopoDSToStep/TopoDSToStep_MakeStepWire.hxx
dpasukhi bc4bd219d6 0033564: Data Exchange, STEP - Making default unit parameter
Updated signature for step makers with units
  to have default unit as a mm (no scaling)
2025-03-03 12:11:28 +00:00

84 lines
2.3 KiB
C++

// Created on: 1994-11-30
// Created by: Frederic MAUPAS
// Copyright (c) 1994-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 _TopoDSToStep_MakeStepWire_HeaderFile
#define _TopoDSToStep_MakeStepWire_HeaderFile
#include <Standard.hxx>
#include <Standard_DefineAlloc.hxx>
#include <Standard_Handle.hxx>
#include <TopoDSToStep_MakeWireError.hxx>
#include <TopoDSToStep_Root.hxx>
class StepShape_TopologicalRepresentationItem;
class TopoDS_Wire;
class TopoDSToStep_Tool;
class Transfer_FinderProcess;
//! This class implements the mapping between classes
//! Wire from TopoDS and TopologicalRepresentationItem from
//! StepShape.
class TopoDSToStep_MakeStepWire : public TopoDSToStep_Root
{
public:
DEFINE_STANDARD_ALLOC
Standard_EXPORT TopoDSToStep_MakeStepWire();
Standard_EXPORT TopoDSToStep_MakeStepWire(const TopoDS_Wire& W,
TopoDSToStep_Tool& T,
const Handle(Transfer_FinderProcess)& FP,
const StepData_Factors& theLocalFactors = StepData_Factors());
Standard_EXPORT void Init (const TopoDS_Wire& W,
TopoDSToStep_Tool& T,
const Handle(Transfer_FinderProcess)& FP,
const StepData_Factors& theLocalFactors = StepData_Factors());
Standard_EXPORT const Handle(StepShape_TopologicalRepresentationItem)& Value() const;
Standard_EXPORT TopoDSToStep_MakeWireError Error() const;
protected:
private:
Handle(StepShape_TopologicalRepresentationItem) myResult;
TopoDSToStep_MakeWireError myError;
};
#endif // _TopoDSToStep_MakeStepWire_HeaderFile