Salome HOME
Rename Engines::Component to Engines::EngineComponent
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeSequenceOfReal_i.cxx
1 //  Copyright (C) 2007-2010  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.
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> CasCadeSeq;
36   for (int i = 0; i < other.length(); i++) {
37     CasCadeSeq.push_back(other[i]);
38   }
39   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Assign(CasCadeSeq);
40 }
41  
42 SALOMEDS::DoubleSeq* SALOMEDS_AttributeSequenceOfReal_i::CorbaSequence()
43 {
44   SALOMEDS::Locker lock; 
45   SALOMEDS::DoubleSeq_var CorbaSeq = new SALOMEDS::DoubleSeq;
46   const std::vector<double>& CasCadeSeq = dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Array();
47   int len = CasCadeSeq.size();
48   CorbaSeq->length(len);
49   for (int i = 0; i < len; i++) {
50     CorbaSeq[i] = CasCadeSeq[i];
51   }
52   return CorbaSeq._retn();
53 }
54  
55 void SALOMEDS_AttributeSequenceOfReal_i::Add(CORBA::Double value) 
56 {
57   SALOMEDS::Locker lock; 
58   CheckLocked();
59   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Add(value);
60 }
61
62 void SALOMEDS_AttributeSequenceOfReal_i::Remove(CORBA::Long index) 
63 {
64   SALOMEDS::Locker lock; 
65   CheckLocked();
66   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Remove(index);
67 }
68  
69 void SALOMEDS_AttributeSequenceOfReal_i::ChangeValue(CORBA::Long index, CORBA::Double value)
70 {
71   SALOMEDS::Locker lock; 
72   CheckLocked();
73   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->ChangeValue(index, value);
74 }
75  
76 CORBA::Double SALOMEDS_AttributeSequenceOfReal_i::Value(CORBA::Short index) 
77 {
78   SALOMEDS::Locker lock; 
79   return dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Value(index);
80 }
81
82 CORBA::Long SALOMEDS_AttributeSequenceOfReal_i::Length() 
83 {
84   SALOMEDS::Locker lock; 
85   return dynamic_cast<SALOMEDSImpl_AttributeSequenceOfReal*>(_impl)->Length();
86 }
87