mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-09 18:50:54 +03:00
77 lines
2.5 KiB
C++
77 lines
2.5 KiB
C++
// 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.
|
|
|
|
#include <STEPEdit.hxx>
|
|
|
|
#include <APIHeaderSection_MakeHeader.hxx>
|
|
#include <IFSelect_SelectModelEntities.hxx>
|
|
#include <IFSelect_SelectModelRoots.hxx>
|
|
#include <IFSelect_SelectSignature.hxx>
|
|
#include <StepAP214.hxx>
|
|
#include <StepAP214_Protocol.hxx>
|
|
#include <StepData_StepModel.hxx>
|
|
#include <StepSelect_StepType.hxx>
|
|
|
|
Handle(Interface_Protocol) STEPEdit::Protocol ()
|
|
{
|
|
/*
|
|
static Handle(StepData_FileProtocol) proto;
|
|
if (!proto.IsNull()) return proto;
|
|
proto = new StepData_FileProtocol;
|
|
proto->Add (StepAP214::Protocol());
|
|
proto->Add (HeaderSection::Protocol());
|
|
return proto;
|
|
*/
|
|
return StepAP214::Protocol();
|
|
}
|
|
|
|
Handle(StepData_StepModel) STEPEdit::NewModel ()
|
|
{
|
|
APIHeaderSection_MakeHeader head;
|
|
return head.NewModel(STEPEdit::Protocol());
|
|
}
|
|
|
|
Handle(IFSelect_Signature) STEPEdit::SignType ()
|
|
{
|
|
static Handle(StepSelect_StepType) sty;
|
|
if (!sty.IsNull()) return sty;
|
|
sty = new StepSelect_StepType;
|
|
sty->SetProtocol (STEPEdit::Protocol());
|
|
return sty;
|
|
}
|
|
|
|
Handle(IFSelect_SelectSignature) STEPEdit::NewSelectSDR ()
|
|
{
|
|
Handle(IFSelect_SelectSignature) sel = new IFSelect_SelectSignature
|
|
(STEPEdit::SignType(),"SHAPE_DEFINITION_REPRESENTATION");
|
|
sel->SetInput (new IFSelect_SelectModelRoots);
|
|
return sel;
|
|
}
|
|
|
|
Handle(IFSelect_SelectSignature) STEPEdit::NewSelectPlacedItem ()
|
|
{
|
|
Handle(IFSelect_SelectSignature) sel = new IFSelect_SelectSignature
|
|
(STEPEdit::SignType(),"MAPPED_ITEM|CONTEXT_DEPENDENT_SHAPE_REPRESENTATION",Standard_False);
|
|
sel->SetInput (new IFSelect_SelectModelEntities);
|
|
return sel;
|
|
}
|
|
|
|
Handle(IFSelect_SelectSignature) STEPEdit::NewSelectShapeRepr ()
|
|
{
|
|
Handle(IFSelect_SelectSignature) sel = new IFSelect_SelectSignature
|
|
(STEPEdit::SignType(),"SHAPE_REPRESENTATION",Standard_False);
|
|
// REPRESENTATION_RELATIONSHIP passe par CONTEXT_DEPENDENT_SHAPE_REPRESENTATION
|
|
sel->SetInput (new IFSelect_SelectModelEntities);
|
|
return sel;
|
|
}
|