Salome HOME
079ce2b8561d18418434daca81572348157cfc4d
[modules/hexablock.git] / src / HEXABLOCK / make_dummycad
1 #!/bin/sh
2 # Copyright (C) 2009-2023  CEA, EDF
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2.1 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 #
18 # See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 #
20
21 # Comm : Generation d'une partie CasCade fictive
22
23 rm   -rf nokas
24 mkdir -p nokas
25 cp  HexDummyCad.hxx nokas/
26
27 while read fic
28       do
29       echo '#include "HexDummyCad.hxx"' > nokas/$fic
30       done << END_OF_FILE
31 BRepAdaptor_Curve.hxx
32 BRepAlgoAPI_Section.hxx
33 BRepBuilderAPI_MakeEdge.hxx
34 BRepBuilderAPI_MakeVertex.hxx
35 BRepBuilderAPI_Transform.hxx
36 BRepPrimAPI_MakeCylinder.hxx
37 BRepPrimAPI_MakeSphere.hxx
38 BRepTools.hxx
39 BRep_Builder.hxx
40 BRep_Tool.hxx
41 GCPnts_AbscissaPoint.hxx
42 GC_MakeCircle.hxx
43 GeomAPI_ProjectPointOnCurve.hxx
44 Geom_Circle.hxx
45 TopExp_Explorer.hxx
46 TopTools_IndexedMapOfShape.hxx
47 TopoDS.hxx
48 TopoDS_Compound.hxx
49 TopoDS_Edge.hxx
50 TopoDS_Iterator.hxx
51 TopoDS_Shape.hxx
52 TopoDS_Vertex.hxx
53 gp_Circ.hxx
54 gp_Dir.hxx
55 gp_Lin.hxx
56 gp_Pln.hxx
57 gp_Pnt.hxx
58 END_OF_FILE