Salome HOME
66be21b15db5717d5f024747cc52e03d73a51792
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeSequenceOfReal_i.cxx
1 // Copyright (C) 2007-2023  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
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 //  File   : SALOMEDS_AttributeSequenceOfReal_i.cxx
24 //  Author : Sergey RUIN
25 //  Module : SALOME
26 //
27 #include "SALOMEDS_AttributeSequenceOfReal_i.hxx"
28 #include "SALOMEDS.hxx" 
29 #include <vector>
30
31 void SALOMEDS_AttributeSequenceOfReal_i::Assign(const SALOMEDS::DoubleSeq& other) 
32 {
33   SALOMEDS::Locker lock; 
34   CheckLocked();
35   std::vector<double> aSeq;
36   for(int i = 0, len = other.length(); i<len; i++) aSeq.push_back(other[i]);
37   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Assign(aSeq);
38 }
39  
40 SALOMEDS::DoubleSeq* SALOMEDS_AttributeSequenceOfReal_i::CorbaSequence()
41 {
42   SALOMEDS::Locker lock; 
43   SALOMEDS::DoubleSeq_var CorbaSeq = new SALOMEDS::DoubleSeq;
44   const std::vector<double>& CasCadeSeq = dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Array();
45   size_t len = CasCadeSeq.size();
46   CorbaSeq->length(len);
47   for (size_t i = 0; i < len; i++) {
48     CorbaSeq[i] = CasCadeSeq[i];
49   }
50   return CorbaSeq._retn();
51 }
52  
53 void SALOMEDS_AttributeSequenceOfReal_i::Add(CORBA::Double value) 
54 {
55   SALOMEDS::Locker lock; 
56   CheckLocked();
57   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Add(value);
58 }
59
60 void SALOMEDS_AttributeSequenceOfReal_i::Remove(CORBA::Long index) 
61 {
62   SALOMEDS::Locker lock; 
63   CheckLocked();
64   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Remove(index);
65 }
66  
67 void SALOMEDS_AttributeSequenceOfReal_i::ChangeValue(CORBA::Long index, CORBA::Double value)
68 {
69   SALOMEDS::Locker lock; 
70   CheckLocked();
71   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->ChangeValue(index, value);
72 }
73  
74 CORBA::Double SALOMEDS_AttributeSequenceOfReal_i::Value(CORBA::Short index) 
75 {
76   SALOMEDS::Locker lock; 
77   return dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Value(index);
78 }
79
80 CORBA::Long SALOMEDS_AttributeSequenceOfReal_i::Length() 
81 {
82   SALOMEDS::Locker lock; 
83   return dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Length();
84 }
85