1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-08-14 13:30:48 +03:00
Files
occt/src/StepAP214/StepAP214_ApprovalItem.cdl
bugmaster b311480ed5 0023024: Update headers of OCCT files
Added appropriate copyright and license information in source files
2012-03-21 19:43:04 +04:00

100 lines
4.2 KiB
Plaintext
Executable File

-- Created on: 1999-03-09
-- Created by: data exchange team
-- Copyright (c) 1999 Matra Datavision
-- Copyright (c) 1999-2012 OPEN CASCADE SAS
--
-- The content of this file is subject to the Open CASCADE Technology Public
-- License Version 6.5 (the "License"). You may not use the content of this file
-- except in compliance with the License. Please obtain a copy of the License
-- at http://www.opencascade.org and read it completely before using this file.
--
-- The Initial Developer of the Original Code is Open CASCADE S.A.S., having its
-- main offices at: 1, place des Freres Montgolfier, 78280 Guyancourt, France.
--
-- The Original Code and all software distributed under the License is
-- distributed on an "AS IS" basis, without warranty of any kind, and the
-- Initial Developer hereby disclaims all such warranties, including without
-- limitation, any warranties of merchantability, fitness for a particular
-- purpose or non-infringement. Please see the License for the specific terms
-- and conditions governing the rights and limitations under the License.
class ApprovalItem from StepAP214 inherits SelectType from StepData
uses
AssemblyComponentUsageSubstitute from StepRepr,
DocumentFile from StepBasic,
MaterialDesignation from StepRepr,
MechanicalDesignGeometricPresentationRepresentation from StepVisual,
PresentationArea from StepVisual,
Product from StepBasic,
ProductDefinition from StepBasic,
ProductDefinitionFormation from StepBasic,
ProductDefinitionRelationship from StepBasic,
PropertyDefinition from StepRepr,
ShapeRepresentation from StepShape,
SecurityClassification from StepBasic
is
Create returns ApprovalItem;
---Purpose : Returns a ApprovalItem SelectType
CaseNum (me; ent : Transient) returns Integer is virtual;
---Purpose: Recognizes a ApprovalItem Kind Entity that is :
-- 1 -> AssemblyComponentUsageSubstitute
-- 2 -> DocumentFile
-- 3 -> MaterialDesignation
-- 4 -> MechanicalDesignGeometricPresentationRepresentation
-- 5 -> PresentationArea
-- 6 -> Product
-- 7 -> ProductDefinition
-- 8 -> ProductDefinitionFormation
-- 9 -> ProductDefinitionRelationship
-- 10 -> PropertyDefinition
-- 11 -> ShapeRepresentation
-- 12 -> SecurityClassification
-- 0 else
AssemblyComponentUsageSubstitute (me) returns any AssemblyComponentUsageSubstitute is virtual ;
---Purpose : returns Value as a AssemblyComponentUsageSubstitute (Null if another type)
DocumentFile (me) returns any DocumentFile is virtual;
---Purpose : returns Value as a DocumentFile (Null if another type)
MaterialDesignation (me) returns any MaterialDesignation is virtual;
---Purpose : returns Value as a MaterialDesignation (Null if another type)
MechanicalDesignGeometricPresentationRepresentation (me) returns any MechanicalDesignGeometricPresentationRepresentation is virtual;
---Purpose : returns Value as a MechanicalDesignGeometricPresentationRepresentation (Null if another type)
PresentationArea (me) returns any PresentationArea is virtual;
---Purpose : returns Value as a PresentationArea (Null if another type)
Product (me) returns any Product is virtual;
---Purpose : returns Value as a Product (Null if another type)
ProductDefinition (me) returns any ProductDefinition is virtual;
---Purpose : returns Value as a ProductDefinition (Null if another type)
ProductDefinitionFormation (me) returns any ProductDefinitionFormation is virtual;
---Purpose : returns Value as a ProductDefinitionFormation (Null if another type)
ProductDefinitionRelationship (me) returns any ProductDefinitionRelationship is virtual;
---Purpose : returns Value as aProductDefinitionRelationship (Null if another type)
PropertyDefinition (me) returns any PropertyDefinition is virtual;
---Purpose : returns Value as a PropertyDefinition (Null if another type)
ShapeRepresentation (me) returns any ShapeRepresentation is virtual;
---Purpose : returns Value as a ShapeRepresentation (Null if another type)
SecurityClassification (me) returns any SecurityClassification is virtual;
---Purpose : returns Value as a SecurityClassification (Null if another type)
end ApprovalItem;