mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-12 11:06:26 +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.
64 lines
2.6 KiB
Plaintext
64 lines
2.6 KiB
Plaintext
-- Created on: 2000-07-03
|
|
-- 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.
|
|
|
|
-- Generator: ExpToCas (EXPRESS -> CASCADE/XSTEP Translator) V1.1
|
|
|
|
class MakeFromUsageOption from StepRepr
|
|
inherits ProductDefinitionUsage from StepRepr
|
|
|
|
---Purpose: Representation of STEP entity MakeFromUsageOption
|
|
|
|
uses
|
|
HAsciiString from TCollection,
|
|
ProductDefinition from StepBasic,
|
|
MeasureWithUnit from StepBasic
|
|
|
|
is
|
|
Create returns MakeFromUsageOption from StepRepr;
|
|
---Purpose: Empty constructor
|
|
|
|
Init (me: mutable; aProductDefinitionRelationship_Id: HAsciiString from TCollection;
|
|
aProductDefinitionRelationship_Name: HAsciiString from TCollection;
|
|
hasProductDefinitionRelationship_Description: Boolean;
|
|
aProductDefinitionRelationship_Description: HAsciiString from TCollection;
|
|
aProductDefinitionRelationship_RelatingProductDefinition: ProductDefinition from StepBasic;
|
|
aProductDefinitionRelationship_RelatedProductDefinition: ProductDefinition from StepBasic;
|
|
aRanking: Integer;
|
|
aRankingRationale: HAsciiString from TCollection;
|
|
aQuantity: MeasureWithUnit from StepBasic);
|
|
---Purpose: Initialize all fields (own and inherited)
|
|
|
|
Ranking (me) returns Integer;
|
|
---Purpose: Returns field Ranking
|
|
SetRanking (me: mutable; Ranking: Integer);
|
|
---Purpose: Set field Ranking
|
|
|
|
RankingRationale (me) returns HAsciiString from TCollection;
|
|
---Purpose: Returns field RankingRationale
|
|
SetRankingRationale (me: mutable; RankingRationale: HAsciiString from TCollection);
|
|
---Purpose: Set field RankingRationale
|
|
|
|
Quantity (me) returns MeasureWithUnit from StepBasic;
|
|
---Purpose: Returns field Quantity
|
|
SetQuantity (me: mutable; Quantity: MeasureWithUnit from StepBasic);
|
|
---Purpose: Set field Quantity
|
|
|
|
fields
|
|
theRanking: Integer;
|
|
theRankingRationale: HAsciiString from TCollection;
|
|
theQuantity: MeasureWithUnit from StepBasic;
|
|
|
|
end MakeFromUsageOption;
|