Salome HOME
Updated copyright comment
[modules/hexablock.git] / src / HEXABLOCKGUI / HEXABLOCKGUI_Model.cxx
1 // Copyright (C) 2009-2024  CEA, EDF
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #include "hexa_base.hxx"
21 #include "HEXABLOCKGUI_Model.hxx"
22
23 //#define _DEVDEBUG_
24 #include "HEXABLOCKGUI_Trace.hxx"
25
26
27
28 HEXABLOCKGUI_Model::HEXABLOCKGUI_Model(CAM_Module* theModule)
29   : SalomeApp_DataModel(theModule)
30 {
31   DEBTRACE("HEXABLOCKGUI_Model::HEXABLOCKGUI_Model");
32   std::cout <<  "HEXABLOCKGUI_Model::HEXABLOCKGUI_Model" << std::endl;
33 }
34
35 HEXABLOCKGUI_Model::~HEXABLOCKGUI_Model()
36 {
37   DEBTRACE("HEXABLOCKGUI_Model:: ~HEXABLOCKGUI_Model");
38 }
39   
40 bool HEXABLOCKGUI_Model::open(const QString& fileName, CAM_Study* study, QStringList listOfFiles)
41 {
42   DEBTRACE("HEXABLOCKGUI_Model::open");
43   return SalomeApp_DataModel::open(fileName, study, listOfFiles);
44 }
45
46 bool HEXABLOCKGUI_Model::save(QStringList& listOfFiles)
47 {
48   DEBTRACE("HEXABLOCKGUI_Model::save");
49   std::cout <<  "HEXABLOCKGUI_Model::save" << std::endl;
50   return SalomeApp_DataModel::save(listOfFiles);
51 }
52
53 bool HEXABLOCKGUI_Model::saveAs(const QString& fileName, CAM_Study* study, QStringList& listOfFiles)
54 {
55   DEBTRACE("HEXABLOCKGUI_Model::saveAs");
56   std::cout <<  "HEXABLOCKGUI_Model::saveAs" << std::endl;
57   return SalomeApp_DataModel::saveAs(fileName, study, listOfFiles);
58 }