Salome HOME
ENV: Windows porting.
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeInteger_i.cxx
1 //  File   : SALOMEDS_AttributeInteger_i.cxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5
6 #include "SALOMEDS_AttributeInteger_i.hxx"
7 #include "SALOMEDS.hxx"
8
9 using namespace std;
10
11 CORBA::Long SALOMEDS_AttributeInteger_i::Value() 
12 {
13   SALOMEDS::Locker lock; 
14   return Handle(SALOMEDSImpl_AttributeInteger)::DownCast(_impl)->Value();
15 }
16
17 void SALOMEDS_AttributeInteger_i::SetValue(CORBA::Long value) 
18 {
19   SALOMEDS::Locker lock; 
20   CheckLocked();
21   Handle(SALOMEDSImpl_AttributeInteger)::DownCast(_impl)->SetValue(value);
22 }
23
24