0031682: Visualization - Prs3d_ShadingAspect::SetTransparency() has no effect with...
[occt.git] / src / ShapePersistent / ShapePersistent_HArray2.hxx
CommitLineData
ff205346 1// Copyright (c) 2015 OPEN CASCADE SAS
2//
3// This file is part of Open CASCADE Technology software library.
4//
5// This library is free software; you can redistribute it and/or modify it under
6// the terms of the GNU Lesser General Public License version 2.1 as published
7// by the Free Software Foundation, with special exception defined in the file
8// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
9// distribution for complete text of the license and disclaimer of any warranty.
10//
11// Alternatively, this file may be used under the terms of Open CASCADE
12// commercial license or contractual agreement.
13
14
15#ifndef _ShapePersistent_HArray2_HeaderFile
16#define _ShapePersistent_HArray2_HeaderFile
17
18#include <StdLPersistent_HArray2.hxx>
45d8465e 19#include <StdObject_gp_Vectors.hxx>
20#include <StdObject_gp_Curves.hxx>
ff205346 21
22#include <TColgp_HArray2OfXYZ.hxx>
23#include <TColgp_HArray2OfPnt.hxx>
24#include <TColgp_HArray2OfDir.hxx>
25#include <TColgp_HArray2OfVec.hxx>
26#include <TColgp_HArray2OfXY.hxx>
27#include <TColgp_HArray2OfPnt2d.hxx>
28#include <TColgp_HArray2OfDir2d.hxx>
29#include <TColgp_HArray2OfVec2d.hxx>
30#include <TColgp_HArray2OfLin2d.hxx>
31#include <TColgp_HArray2OfCirc2d.hxx>
32
33
34class ShapePersistent_HArray2 : private StdLPersistent_HArray2
35{
ff205346 36public:
37 typedef instance<TColgp_HArray2OfXYZ> XYZ;
38 typedef instance<TColgp_HArray2OfPnt> Pnt;
39 typedef instance<TColgp_HArray2OfDir> Dir;
40 typedef instance<TColgp_HArray2OfVec> Vec;
41 typedef instance<TColgp_HArray2OfXY> XY;
42 typedef instance<TColgp_HArray2OfPnt2d> Pnt2d;
43 typedef instance<TColgp_HArray2OfDir2d> Dir2d;
44 typedef instance<TColgp_HArray2OfVec2d> Vec2d;
45 typedef instance<TColgp_HArray2OfLin2d> Lin2d;
46 typedef instance<TColgp_HArray2OfCirc2d> Circ2d;
47};
48
49#endif