1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-05-06 10:36:12 +03:00
occt/src/StepRepr/StepRepr_AssemblyComponentUsageSubstitute.cdl
2012-03-05 19:23:40 +04:00

44 lines
1.2 KiB
Plaintext
Executable File

-- File: StepRepr_AssemblyComponentUsageSubstitute.cdl
-- Created: Tue Jun 30 17:30:46 1998
-- Author: Christian CAILLET
-- <cky@heliox.paris1.matra-dtv.fr>
---Copyright: Matra Datavision 1998
class AssemblyComponentUsageSubstitute from StepRepr inherits TShared from MMgt
uses
HAsciiString from TCollection,
AssemblyComponentUsage from StepRepr
is
Create returns mutable AssemblyComponentUsageSubstitute;
Init (me : mutable;
aName : HAsciiString;
aDef : HAsciiString;
aBase : AssemblyComponentUsage;
aSubs : AssemblyComponentUsage);
Name (me) returns HAsciiString;
SetName (me : mutable; aName : HAsciiString);
Definition (me) returns HAsciiString;
SetDefinition (me : mutable; aDef : HAsciiString);
Base (me) returns AssemblyComponentUsage;
SetBase (me : mutable; aBase : AssemblyComponentUsage);
Substitute (me) returns AssemblyComponentUsage;
SetSubstitute (me : mutable; aSubstitute : AssemblyComponentUsage);
fields
theName : HAsciiString;
theDef : HAsciiString;
theBase : AssemblyComponentUsage;
theSubs : AssemblyComponentUsage;
end AssemblyComponentUsageSubstitute;