]> SALOME platform Git repositories - modules/hexablock.git/blob - src/HEXABLOCK/HexGroup.hxx
Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/hexablock.git] / src / HEXABLOCK / HexGroup.hxx
1
2 // Class : Implementation des groupes
3
4 // Copyright (C) 2009-2012  CEA/DEN, EDF R&D
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.
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 "hexa_base.hxx"
27
28 BEGIN_NAMESPACE_HEXA
29
30 class Group 
31 {
32 public :
33    Group (cpchar nom, EnumGroup grp);
34   ~Group ()                   {}
35
36    void      setName (cpchar nom)          { grp_name = nom ; }
37    cpchar    getName ()                    { return grp_name.c_str () ; }
38    EnumGroup getKind ()                    { return grp_kind ; }
39    int       addElement    (EltBase* elt);
40    int       removeElement (EltBase* elt);
41    int       findElement   (EltBase* elt);
42    int       removeElement (int nro);
43    EltBase*  getElement    (int nro)       { return grp_table [nro] ; }
44    int       countElement  ()              { return grp_table.size () ; }
45    void      clearElement  ()              { grp_table.clear () ; }
46
47    void      saveXml  (XmlWriter* xml);
48    EnumElt   getTypeElt ()                 { return grp_typelt ; }
49
50    static EnumGroup getKind (cpchar kind);
51    static EnumGroup getKind (const string& k) { return getKind (k.c_str());}
52
53 private :
54    int grp_id;
55    static int last_grp_id;
56    EnumGroup   grp_kind;
57    EnumElt     grp_typelt;
58    std::string grp_name;
59    std::vector <EltBase*> grp_table;
60 };
61
62 END_NAMESPACE_HEXA
63 #endif