0024927: Getting rid of "Persistent" functionality -- Code
[occt.git] / src / PDataXtd / PDataXtd_PatternStd.cdl
diff --git a/src/PDataXtd/PDataXtd_PatternStd.cdl b/src/PDataXtd/PDataXtd_PatternStd.cdl
deleted file mode 100644 (file)
index ca1023a..0000000
+++ /dev/null
@@ -1,116 +0,0 @@
--- Created on: 1998-02-16
--- Created by: Jing Cheng MEI
--- Copyright (c) 1998-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.
-
--- modified     Sergey Zaritchny
-
-
-class PatternStd from PDataXtd inherits Attribute from PDF
-
-       ---Purpose: to create a pattern function
-
-uses
-
-
-    NamedShape      from PNaming,
-    Integer         from PDataStd,
-    Real            from PDataStd
-
-
-is
-
-    Create
-    returns PatternStd from PDataXtd;
-    
-    --- Category: Set and Get methods
-
-    Signature(me: mutable; signature: Integer from Standard);
-        ---C++: inline
-
-    Axis1Reversed(me: mutable;  Axis1Reversed:  Boolean from Standard);
-        ---C++: inline
-     
-    Axis2Reversed(me: mutable;  Axis2Reversed:  Boolean from Standard);
-        ---C++: inline
-     
-    Axis1(me: mutable; Axis1: NamedShape from PNaming);
-        ---C++: inline
-
-    Axis2(me: mutable; Axis2: NamedShape from PNaming);
-        ---C++: inline
-
-    Value1(me: mutable; Value1: Real from PDataStd);
-        ---C++: inline
-
-    Value2(me: mutable; Value2: Real from PDataStd);
-        ---C++: inline
-
-    NbInstances1(me: mutable; NbInstances1: Integer from PDataStd);
-        ---C++: inline
-
-    NbInstances2(me: mutable; NbInstances2: Integer from PDataStd);
-        ---C++: inline
-
-    Mirror(me: mutable; plane: NamedShape from PNaming);
-        ---C++: inline
-
-
-
-    Signature(me) returns Integer from Standard;
-        ---C++: inline
-    
-    Axis1Reversed(me) returns Boolean from Standard;
-        ---C++: inline
-     
-    Axis2Reversed(me) returns Boolean from Standard;
-        ---C++: inline
-
-    Axis1(me) returns NamedShape from PNaming;
-        ---C++: inline
-
-    Axis2(me) returns NamedShape from PNaming;
-        ---C++: inline
-
-    Value1(me) returns Real from PDataStd;
-        ---C++: inline
-
-    Value2(me) returns Real from PDataStd;
-        ---C++: inline
-
-    NbInstances1(me) returns Integer from PDataStd;
-        ---C++: inline
-
-    NbInstances2(me) returns Integer from PDataStd;
-        ---C++: inline
-
-    Mirror(me) returns NamedShape from PNaming;
-        ---C++: inline
-
-
-fields
-
-    mySignature     : Integer         from Standard;
-    myAxis1Reversed : Boolean         from Standard;
-    myAxis2Reversed : Boolean         from Standard;
-
-    myAxis1         : NamedShape      from PNaming;
-    myAxis2         : NamedShape      from PNaming;
-    myValue1        : Real            from PDataStd;
-    myValue2        : Real            from PDataStd;
-    myNb1           : Integer         from PDataStd;
-    myNb2           : Integer         from PDataStd;
-    myMirror        : NamedShape      from PNaming;
-
-end PatternStd;