Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / HEXABLOCK / HexGroup.hxx
1
2 // Class : Implementation des groupes
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 __GROUP_H
24 #define __GROUP_H
25
26 #include "HexEltBase.hxx"
27
28 BEGIN_NAMESPACE_HEXA
29
30 class HexaExport Group : public EltBase 
31 {
32 public :
33    int       addElement    (EltBase* elt);
34    int       countElement  ()              { return grp_table.size () ; }
35    EnumGroup getKind ()                    { return grp_kind ; }
36    int       removeElement (int nro);
37    void      clearElement  ()              { grp_table.clear () ; }
38    int       removeElement (EltBase* elt);
39    EltBase*  getElement    (int nro)       { return grp_table [nro] ; }
40
41    Group (Document* dad, cpchar nom, EnumGroup grp);
42 #ifndef SWIG
43 public :
44    int       findElement   (EltBase* elt);
45   ~Group ()                   {}
46    void      saveXml  (XmlWriter* xml);
47    EnumElt   getTypeElt ()                 { return grp_typelt ; }
48
49    static EnumGroup getKind (cpchar kind);
50    static EnumGroup getKind (const std::string& k) { return getKind (k.c_str());}
51
52 private :
53    int grp_id;
54    EnumGroup   grp_kind;
55    EnumElt     grp_typelt;
56    std::vector <EltBase*> grp_table;
57 #endif
58 };
59
60 END_NAMESPACE_HEXA
61 #endif