mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-04-03 17:56:21 +03:00
Modification for loading a few STEP files in the model. Protected by Mutex 1. Loading STEP file in the model with using yacc and lex. 2. Message management 3. Registration in static structure Interface_GeneralLib, Interface_ReaderLib, Interface_Writer_Lib for each StepData_Procotol. Modifications: STEPControl_Controller, STEPCAFControl_Controller were created as not static objects when STEPControl_Reader or STEP_Control_Writes were initialized. Parameters used for translation from Interface::Static were made not static. Map to keep parameters was added in the Interface::InterfaceModel. For STEP translation parameters were initialized during initializing STEPData_STEPModel. model. Static variables were removed. Redundant classes were removed from STEP translator.
32 lines
1.2 KiB
C++
32 lines
1.2 KiB
C++
// Created on: 2000-10-05
|
|
// Created by: Andrey BETENEV
|
|
// Copyright (c) 2000-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 <Standard_Type.hxx>
|
|
#include <STEPCAFControl_ActorWrite.hxx>
|
|
#include <STEPCAFControl_Controller.hxx>
|
|
#include <XSAlgo.hxx>
|
|
|
|
IMPLEMENT_STANDARD_RTTIEXT(STEPCAFControl_Controller,STEPControl_Controller)
|
|
|
|
//=======================================================================
|
|
//function : STEPCAFControl_Controller
|
|
//purpose :
|
|
//=======================================================================
|
|
STEPCAFControl_Controller::STEPCAFControl_Controller ()
|
|
{
|
|
Handle(STEPCAFControl_ActorWrite) ActWrite = new STEPCAFControl_ActorWrite;
|
|
myAdaptorWrite = ActWrite;
|
|
}
|