Salome HOME
Update copyrights
[modules/med.git] / src / MEDCalc / cmp / MEDCommandsHistoryManager_i.cxx
1 // Copyright (C) 2015-2019  CEA/DEN, EDF R&D
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 "MEDCommandsHistoryManager_i.hxx"
21
22 MEDCommandsHistoryManager_i* MEDCommandsHistoryManager_i::_instance = NULL;
23
24 MEDCommandsHistoryManager_i*
25 MEDCommandsHistoryManager_i::getInstance()
26 {
27   if (_instance == NULL)
28     _instance = new MEDCommandsHistoryManager_i();
29   return _instance;
30 }
31
32 MEDCommandsHistoryManager_i::MEDCommandsHistoryManager_i()
33   : _history(0)
34 {
35   _history = new MEDCALC::CommandsList;
36 }
37
38 MEDCommandsHistoryManager_i::~MEDCommandsHistoryManager_i()
39 {
40   for (CORBA::ULong i = 0; i < _history->length(); ++i) {
41     CORBA::string_free((*_history)[i]);
42   }
43   delete _history;
44 }
45
46 void
47 MEDCommandsHistoryManager_i::addCommand(const char* command)
48 {
49   CORBA::ULong size = _history->length();
50   _history->length(size+1);
51   (*_history)[size] = CORBA::string_dup(command);
52 }
53
54 MEDCALC::CommandsList*
55 MEDCommandsHistoryManager_i::getCommandsHistory()
56 {
57   return _history;
58 }
59
60 void
61 MEDCommandsHistoryManager_i::clearHistory()
62 {
63   _history->length(0);
64 }