Salome HOME
5f7b7566dd91399faaa2b6df5f041b39812d8299
[modules/hexablock.git] / src / HEXABLOCK / HexGroup.hxx
1
2 // Class : Implementation des groupes
3
4 // Copyright (C) 2009-2013  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 "Hex_defines.hxx"
27 #include "HexEltBase.hxx"
28
29 BEGIN_NAMESPACE_HEXA
30
31 class HEXABLOCKENGINE_EXPORT Group : public EltBase 
32 {
33 public :
34    int       addElement    (EltBase* elt);
35    int       countElement  ()              { return grp_table.size () ; }
36    EnumGroup getKind ()                    { return grp_kind ; }
37    int       removeElement (int nro);
38    void      clearElement  ()              { grp_table.clear () ; }
39    int       removeElement (EltBase* elt);
40    EltBase*  getElement    (int nro)       { return grp_table [nro] ; }
41
42    Group (Document* dad, cpchar nom, EnumGroup grp);
43 #ifndef SWIG
44 public :
45    int       findElement   (EltBase* elt);
46   ~Group ()                   {}
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    EnumGroup   grp_kind;
56    EnumElt     grp_typelt;
57    std::vector <EltBase*> grp_table;
58 #endif
59 };
60
61 END_NAMESPACE_HEXA
62 #endif