]> SALOME platform Git repositories - modules/yacs.git/blob - src/SALOMEDS/SALOMEDS_AttributeLocalID_i.cxx
Salome HOME
PR: merge from branch BR_OCC_For_3_1_0a3 tag mergeto_trunk_14nov05
[modules/yacs.git] / src / SALOMEDS / SALOMEDS_AttributeLocalID_i.cxx
1 //  File   : SALOMEDS_AttributeLocalID_i.cxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5
6 #include "SALOMEDS_AttributeLocalID_i.hxx"
7 #include "SALOMEDS.hxx"
8
9 using namespace std;
10
11 CORBA::Long SALOMEDS_AttributeLocalID_i::Value() 
12 {
13   SALOMEDS::Locker lock;
14   return Handle(SALOMEDSImpl_AttributeLocalID)::DownCast(_impl)->Value();
15 }
16                                                            
17 void SALOMEDS_AttributeLocalID_i::SetValue(CORBA::Long value) 
18 {
19   SALOMEDS::Locker lock;
20   CheckLocked();
21   Handle(SALOMEDSImpl_AttributeLocalID)::DownCast(_impl)->SetValue(value);
22 }
23