Salome HOME
e75315b6235bbf8b3585bf13adad1ef5c8d69a77
[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    char* getNextName  (pchar buffer);
39    EnumGroup getKind ()                    { return grp_kind ; }
40    int       addElement    (EltBase* elt);
41    int       removeElement (EltBase* elt);
42    int       findElement   (EltBase* elt);
43    int       removeElement (int nro);
44    EltBase*  getElement    (int nro)       { return grp_table [nro] ; }
45    int       countElement  ()              { return grp_table.size () ; }
46    void      clearElement  ()              { grp_table.clear () ; }
47
48    void      saveXml  (XmlWriter* xml);
49    EnumElt   getTypeElt ()                 { return grp_typelt ; }
50
51    static EnumGroup getKind (cpchar kind);
52    static EnumGroup getKind (const string& k) { return getKind (k.c_str());}
53
54 private :
55    int grp_id;
56    static int last_grp_id;
57    EnumGroup   grp_kind;
58    EnumElt     grp_typelt;
59    std::string grp_name;
60    std::vector <EltBase*> grp_table;
61 };
62
63 END_NAMESPACE_HEXA
64 #endif