Salome HOME
311b3a6fa160ffceee33a6b42df8dedc56db5430
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeSequenceOfInteger_i.cxx
1 // Copyright (C) 2005  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
2 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
3 // 
4 // This library is free software; you can redistribute it and/or
5 // modify it under the terms of the GNU Lesser General Public
6 // License as published by the Free Software Foundation; either 
7 // version 2.1 of the License.
8 // 
9 // This library is distributed in the hope that it will be useful 
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of 
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU 
12 // Lesser General Public License for more details.
13 //
14 // You should have received a copy of the GNU Lesser General Public  
15 // License along with this library; if not, write to the Free Software 
16 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
17 //
18 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
19 //
20 //  File   : SALOMEDS_AttributeSequenceOfInteger_i.cxx
21 //  Author : Sergey RUIN
22 //  Module : SALOME
23
24
25 #include "SALOMEDS_AttributeSequenceOfInteger_i.hxx"
26 #include "SALOMEDS.hxx"
27 #include <vector>
28
29
30 using namespace std;
31
32
33 void SALOMEDS_AttributeSequenceOfInteger_i::Assign(const SALOMEDS::LongSeq& other) 
34 {
35   SALOMEDS::Locker lock;
36   CheckLocked();
37   vector<int> aSeq;
38   for(int i = 0, len = other.length(); i<len; i++) aSeq.push_back(other[i]);
39   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_impl)->Assign(aSeq);
40 }
41  
42 SALOMEDS::LongSeq* SALOMEDS_AttributeSequenceOfInteger_i::CorbaSequence()
43 {
44   SALOMEDS::Locker lock;
45   SALOMEDS::LongSeq_var CorbaSeq = new SALOMEDS::LongSeq;
46   const vector<int>& CasCadeSeq = dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_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_AttributeSequenceOfInteger_i::Add(CORBA::Long value) 
56 {
57   SALOMEDS::Locker lock;
58   CheckLocked();
59   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_impl)->Add(value);
60 }
61
62 void SALOMEDS_AttributeSequenceOfInteger_i::Remove(CORBA::Long index) 
63 {
64   SALOMEDS::Locker lock;
65   CheckLocked();
66   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_impl)->Remove(index);
67 }
68  
69 void SALOMEDS_AttributeSequenceOfInteger_i::ChangeValue(CORBA::Long index, CORBA::Long value)
70 {
71   SALOMEDS::Locker lock;
72   CheckLocked();
73   dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_impl)->ChangeValue(index, value);
74 }
75  
76 CORBA::Long SALOMEDS_AttributeSequenceOfInteger_i::Value(CORBA::Short index) 
77 {
78   SALOMEDS::Locker lock;
79   return dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_impl)->Value(index);
80 }
81
82 CORBA::Long SALOMEDS_AttributeSequenceOfInteger_i::Length() 
83 {  
84   SALOMEDS::Locker lock;
85   return dynamic_cast<SALOMEDSImpl_AttributeSequenceOfInteger*>(_impl)->Length();
86 }
87