Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / HEXABLOCK / Hex.hxx
1
2 // class : La clase principale de Hexa
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 __HEX_H
24 #define __HEX_H
25
26 #include "hexa_base.hxx"
27
28 #if defined WIN32
29 #pragma warning ( disable: 4251 )
30 #endif
31
32 BEGIN_NAMESPACE_HEXA
33
34 HexaExport Hex*  hex_instance ();
35
36 class HexaExport Hex
37 {
38 public:
39    static Hex* getInstance ();
40
41    int       countDocument ();
42    Document* getDocument (int nro);
43    void      removeDocument (Document* doc);
44
45    Document* addDocument  (cpchar name="default");
46    Document* loadDocument (cpchar name);
47    Document* findDocument (cpchar name);
48    Document* findDocument (const std::string& name) 
49              { return findDocument (name.c_str()) ; }
50    void what ();
51    int    sizeofMessage  ();
52    cpchar getMessageLine (int nlig);
53
54 #ifndef SWIG
55    int loadAllDocs (cpchar flow);
56    int saveAllDocs (cpchar filename);
57    void makeName   (cpchar radical, std::string& name);
58
59    void lockDump();
60    void restoreDump();
61      
62 // private:
63              //  Constructeur + destructeur
64     Hex ();
65    ~Hex ();
66
67 private:
68    static Hex* first_instance;
69    std::vector <Document*> liste_documents;
70    Globale*    glob;
71 #endif    // not SWIG
72 };
73
74 HexaExport void what ();
75
76 END_NAMESPACE_HEXA
77 #endif