0024002: Overall code and build procedure refactoring -- automatic
[occt.git] / src / StepVisual / StepVisual_TextLiteral.cdl
diff --git a/src/StepVisual/StepVisual_TextLiteral.cdl b/src/StepVisual/StepVisual_TextLiteral.cdl
deleted file mode 100644 (file)
index 342142a..0000000
+++ /dev/null
@@ -1,65 +0,0 @@
--- Created on: 1995-12-01
--- Created by: EXPRESS->CDL V0.2 Translator
--- Copyright (c) 1995-1999 Matra Datavision
--- Copyright (c) 1999-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.
-
-class TextLiteral from StepVisual 
-
-inherits GeometricRepresentationItem from StepGeom
-
-uses
-
-       HAsciiString from TCollection, 
-       Axis2Placement from StepGeom, 
-       TextPath from StepVisual, 
-       FontSelect from StepVisual
-is
-
-       Create returns TextLiteral;
-       ---Purpose: Returns a TextLiteral
-
-
-       Init (me : mutable;
-             aName : HAsciiString from TCollection) is redefined;
-
-       Init (me : mutable;
-             aName : HAsciiString from TCollection;
-             aLiteral : HAsciiString from TCollection;
-             aPlacement : Axis2Placement from StepGeom;
-             aAlignment : HAsciiString from TCollection;
-             aPath : TextPath from StepVisual;
-             aFont : FontSelect from StepVisual) is virtual;
-
-       -- Specific Methods for Field Data Access --
-
-       SetLiteral(me : mutable; aLiteral : HAsciiString);
-       Literal (me) returns HAsciiString;
-       SetPlacement(me : mutable; aPlacement : Axis2Placement);
-       Placement (me) returns Axis2Placement;
-       SetAlignment(me : mutable; aAlignment : HAsciiString);
-       Alignment (me) returns HAsciiString;
-       SetPath(me : mutable; aPath : TextPath);
-       Path (me) returns TextPath;
-       SetFont(me : mutable; aFont : FontSelect);
-       Font (me) returns FontSelect;
-
-fields
-
-       literal : HAsciiString from TCollection;
-       placement : Axis2Placement from StepGeom; -- a SelectType
-       alignment : HAsciiString from TCollection;
-       path : TextPath from StepVisual; -- an Enumeration
-       font : FontSelect from StepVisual; -- a SelectType
-
-end TextLiteral;