mirror of
https://git.dev.opencascade.org/repos/occt.git
synced 2025-05-06 10:36:12 +03:00
41 lines
1.2 KiB
Plaintext
Executable File
41 lines
1.2 KiB
Plaintext
Executable File
-- File: SecurityClassification.cdl
|
|
-- Created: Fri Dec 1 11:11:27 1995
|
|
-- Author: EXPRESS->CDL V0.2 Translator
|
|
-- Copyright: Matra-Datavision 1993
|
|
|
|
|
|
class SecurityClassification from StepBasic
|
|
|
|
inherits TShared from MMgt
|
|
|
|
uses
|
|
|
|
HAsciiString from TCollection,
|
|
SecurityClassificationLevel from StepBasic
|
|
is
|
|
|
|
Create returns mutable SecurityClassification;
|
|
---Purpose: Returns a SecurityClassification
|
|
|
|
Init (me : mutable;
|
|
aName : mutable HAsciiString from TCollection;
|
|
aPurpose : mutable HAsciiString from TCollection;
|
|
aSecurityLevel : mutable SecurityClassificationLevel from StepBasic) is virtual;
|
|
|
|
-- Specific Methods for Field Data Access --
|
|
|
|
SetName(me : mutable; aName : mutable HAsciiString);
|
|
Name (me) returns mutable HAsciiString;
|
|
SetPurpose(me : mutable; aPurpose : mutable HAsciiString);
|
|
Purpose (me) returns mutable HAsciiString;
|
|
SetSecurityLevel(me : mutable; aSecurityLevel : mutable SecurityClassificationLevel);
|
|
SecurityLevel (me) returns mutable SecurityClassificationLevel;
|
|
|
|
fields
|
|
|
|
name : HAsciiString from TCollection;
|
|
purpose : HAsciiString from TCollection;
|
|
securityLevel : SecurityClassificationLevel from StepBasic;
|
|
|
|
end SecurityClassification;
|