Salome HOME
Porting to ParaView-5.8
[modules/hexablock.git] / src / HEXABLOCK / HexSubShape.hxx
index 1feea5460864cf2e5e548152d5ce1eeec0063add..0abb48e8bcf2c07e3a1ae8999945843944b8c92b 100644 (file)
@@ -1,6 +1,25 @@
 
 // class : Gestion des formes associees (Hexa 5)
 
+// Copyright (C) 2009-2019  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
 #ifndef __SUB_SHAPE_H_
 #define __SUB_SHAPE_H_
 
@@ -18,9 +37,9 @@ public :
     cpchar      getParentName () const;
     int         getIdent ()             { return sub_ident ; }
     int         getDim   ()             { return sub_dim ; }
-    EnumKindOfShape kindOf   ()             { return kind_of ; }
+    virtual EnumKindOfShape kindOf ()   { return kind_of ; }
 
-    const string&       getBrep  ();
+    const std::string&       getBrep  ();
     virtual const TopoDS_Shape& getShape ();
 
     void   saveXml (XmlWriter* xml);
@@ -36,7 +55,7 @@ protected :
     int       sub_dim;     // 0 = point, 1 = arete, 2 = face;
 
     TopoDS_Shape    geo_shape;
-    string          geo_brep;
+    std::string          geo_brep;
     bool            maj_brep, maj_shape;
     EnumKindOfShape kind_of;
 };