mirror of
https://github.com/Open-Cascade-SAS/OCCT.git
synced 2026-05-27 03:17:54 +08:00
41 lines
963 B
Plaintext
Executable File
41 lines
963 B
Plaintext
Executable File
-- File: StepVisual_DirectionCountSelect.cdl
|
|
-- Created: Wed Dec 6 09:37:04 1995
|
|
-- Author: Frederic MAUPAS
|
|
-- <fma@anion>
|
|
---Copyright: Matra Datavision 1995
|
|
|
|
class DirectionCountSelect from StepVisual
|
|
|
|
-- a Select Type (hand generated)
|
|
|
|
uses
|
|
|
|
Integer from Standard
|
|
|
|
is
|
|
|
|
Create returns DirectionCountSelect;
|
|
|
|
SetTypeOfContent(me : in out; aTypeOfContent : Integer);
|
|
|
|
TypeOfContent(me) returns Integer;
|
|
-- 1 -> UDirectionCount
|
|
-- 2 -> VDirectionCount
|
|
|
|
UDirectionCount(me) returns Integer from Standard;
|
|
|
|
SetUDirectionCount(me : in out; aUDirectionCount : Integer from Standard);
|
|
|
|
VDirectionCount(me) returns Integer from Standard;
|
|
|
|
SetVDirectionCount(me : in out; aUDirectionCount : Integer from Standard);
|
|
|
|
|
|
fields
|
|
|
|
theUDirectionCount : Integer from Standard;
|
|
theVDirectionCount : Integer from Standard;
|
|
theTypeOfContent : Integer from Standard;
|
|
|
|
end DirectionCountSelect;
|