Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 10:04:57

0001 // Copyright (c) 2015 OPEN CASCADE SAS
0002 //
0003 // This file is part of Open CASCADE Technology software library.
0004 //
0005 // This library is free software; you can redistribute it and/or modify it under
0006 // the terms of the GNU Lesser General Public License version 2.1 as published
0007 // by the Free Software Foundation, with special exception defined in the file
0008 // OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
0009 // distribution for complete text of the license and disclaimer of any warranty.
0010 //
0011 // Alternatively, this file may be used under the terms of Open CASCADE
0012 // commercial license or contractual agreement.
0013 
0014 
0015 #ifndef _ShapePersistent_HArray2_HeaderFile
0016 #define _ShapePersistent_HArray2_HeaderFile
0017 
0018 #include <StdLPersistent_HArray2.hxx>
0019 #include <StdObject_gp_Vectors.hxx>
0020 #include <StdObject_gp_Curves.hxx>
0021 
0022 #include <TColgp_HArray2OfXYZ.hxx>
0023 #include <TColgp_HArray2OfPnt.hxx>
0024 #include <TColgp_HArray2OfDir.hxx>
0025 #include <TColgp_HArray2OfVec.hxx>
0026 #include <TColgp_HArray2OfXY.hxx>
0027 #include <TColgp_HArray2OfPnt2d.hxx>
0028 #include <TColgp_HArray2OfDir2d.hxx>
0029 #include <TColgp_HArray2OfVec2d.hxx>
0030 #include <TColgp_HArray2OfLin2d.hxx>
0031 #include <TColgp_HArray2OfCirc2d.hxx>
0032 
0033 
0034 class ShapePersistent_HArray2 : private StdLPersistent_HArray2
0035 {
0036 public:
0037   typedef instance<TColgp_HArray2OfXYZ>    XYZ;
0038   typedef instance<TColgp_HArray2OfPnt>    Pnt;
0039   typedef instance<TColgp_HArray2OfDir>    Dir;
0040   typedef instance<TColgp_HArray2OfVec>    Vec;
0041   typedef instance<TColgp_HArray2OfXY>     XY;
0042   typedef instance<TColgp_HArray2OfPnt2d>  Pnt2d;
0043   typedef instance<TColgp_HArray2OfDir2d>  Dir2d;
0044   typedef instance<TColgp_HArray2OfVec2d>  Vec2d;
0045   typedef instance<TColgp_HArray2OfLin2d>  Lin2d;
0046   typedef instance<TColgp_HArray2OfCirc2d> Circ2d;
0047 };
0048 
0049 #endif