mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 02:40:22 +08:00
License statement text corrected; compiler warnings caused by Bison 2.41 disabled for MSVC; a few other compiler warnings on 54-bit Windows eliminated by appropriate type cast Wrong license statements corrected in several files. Copyright and license statements added in XSD and GLSL files. Copyright year updated in some files. Obsolete documentation files removed from DrawResources.
110 lines
3.7 KiB
Plaintext
110 lines
3.7 KiB
Plaintext
-- Created on: 1992-02-11
|
|
-- Created by: Christian CAILLET
|
|
-- Copyright (c) 1992-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.
|
|
|
|
package StepData
|
|
|
|
---Purpose : Gives basic data definition for Step Interface.
|
|
-- Any class of a data model described in EXPRESS Language
|
|
-- is candidate to be managed by a Step Interface
|
|
|
|
uses Standard, MMgt, TCollection, TColStd, Dico, LibCtl, Interface, Message
|
|
|
|
is
|
|
|
|
class StepModel;
|
|
class UndefinedEntity;
|
|
deferred class SelectType;
|
|
|
|
enumeration Logical is LFalse, LTrue, LUnknown;
|
|
---Purpose : A Standard Definition for STEP (which knows Boolean too)
|
|
|
|
class Field;
|
|
class SelectMember;
|
|
class SelectInt;
|
|
class SelectReal;
|
|
class SelectNamed;
|
|
class SelectArrReal;
|
|
|
|
class PDescr;
|
|
class FieldList; -- basic one (no field)
|
|
class FieldList1;
|
|
class FieldListN;
|
|
class FieldListD;
|
|
deferred class EDescr;
|
|
class ESDescr;
|
|
class ECDescr;
|
|
deferred class Described;
|
|
class Simple;
|
|
class Plex;
|
|
class FreeFormEntity;
|
|
|
|
class Protocol; -- basic protocol for Step
|
|
deferred class GeneralModule; -- general services
|
|
|
|
deferred class FileRecognizer instantiates
|
|
Recognizer from Interface (AsciiString from TCollection, Transient);
|
|
|
|
class FileProtocol;
|
|
class HeaderTool;
|
|
class EnumTool;
|
|
|
|
class DescrProtocol;
|
|
class DescrGeneral;
|
|
class DescrReadWrite;
|
|
|
|
class StepReaderData; -- litteral description of Step File
|
|
class StepReaderTool;
|
|
deferred class ReadWriteModule;
|
|
class StepWriter; -- idem but in the other sense
|
|
class StepDumper;
|
|
|
|
class WriterLib instantiates Library from LibCtl
|
|
(Transient, ReadWriteModule, Protocol from StepData);
|
|
|
|
class DefaultGeneral; -- Default Module which processes UnknownEntity
|
|
|
|
|
|
-- General Routines --
|
|
-- HeaderProtocol/AddHeaderProtocol are used to handle Header items :
|
|
-- Reading/Writing but also Copying,Checking,Dumping
|
|
--
|
|
--
|
|
-- Init & Protocol encapsulate the general actions required to work with
|
|
-- this package. While their use is not mandatory, it makes work easier.
|
|
|
|
class Array1OfField instantiates Array1 from TCollection
|
|
(Field from StepData);
|
|
class HArray1OfField instantiates HArray1 from TCollection
|
|
(Field from StepData,Array1OfField from StepData);
|
|
|
|
HeaderProtocol returns Protocol from StepData;
|
|
---Purpose : Returns the recorded HeaderProtocol, which can be :
|
|
-- - a Null Handle if no Header Protocol was yet defined
|
|
-- - a simple Protocol if only one was defined
|
|
-- - a FileProtocol if more than one Protocol was yet defined
|
|
|
|
AddHeaderProtocol (headerproto : Protocol from StepData);
|
|
---Purpose : Adds a new Header Protocol to the Header Definition
|
|
|
|
Init;
|
|
---Purpose : Prepares General Data required to work with this package,
|
|
-- which are the Protocol and Modules to be loaded into Libraries
|
|
|
|
Protocol returns Protocol from StepData;
|
|
---Purpose : Returns a Protocol from StepData (avoids to create it)
|
|
|
|
end StepData;
|