Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / HEXABLOCK / HexSubShape.hxx
1
2 // class : Gestion des formes associees (Hexa 5)
3
4 // Copyright (C) 2009-2024  CEA, EDF
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License, or (at your option) any later version.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 #ifndef __SUB_SHAPE_H_
24 #define __SUB_SHAPE_H_
25
26 #include "HexEltBase.hxx"
27
28 #include <TopoDS_Shape.hxx>
29
30 BEGIN_NAMESPACE_HEXA
31
32 class HexaExport SubShape : public EltBase
33 {
34 public :
35     SubShape (NewShape* dad, int id, int dim);
36     NewShape*   getParentShape() const  { return ss_parent; }
37     cpchar      getParentName () const;
38     int         getIdent ()             { return sub_ident ; }
39     int         getDim   ()             { return sub_dim ; }
40     virtual EnumKindOfShape kindOf ()   { return kind_of ; }
41
42     const std::string&       getBrep  ();
43     virtual const TopoDS_Shape& getShape ();
44
45     void   saveXml (XmlWriter* xml);
46     void   callXml (XmlWriter* xml);
47
48 protected :
49     void updateShape  ();
50     void updateBrep   ();
51
52 protected :
53     NewShape* ss_parent;
54     int       sub_ident;
55     int       sub_dim;     // 0 = point, 1 = arete, 2 = face;
56
57     TopoDS_Shape    geo_shape;
58     std::string          geo_brep;
59     bool            maj_brep, maj_shape;
60     EnumKindOfShape kind_of;
61 };
62 END_NAMESPACE_HEXA
63 #endif