Salome HOME
PR: merge from branch BR_UnitTests tag mergeto_trunk_17oct05
[modules/kernel.git] / src / SALOMEDS / SALOMEDS_AttributeLocalID.cxx
1 //  File   : SALOMEDS_AttributeLocalID.cxx
2 //  Author : Sergey RUIN
3 //  Module : SALOME
4
5 #include "SALOMEDS_AttributeLocalID.hxx"
6
7 #include <TCollection_AsciiString.hxx>
8 #include <TCollection_ExtendedString.hxx>
9
10 SALOMEDS_AttributeLocalID::SALOMEDS_AttributeLocalID(const Handle(SALOMEDSImpl_AttributeLocalID)& theAttr)
11 :SALOMEDS_GenericAttribute(theAttr)
12 {}
13
14 SALOMEDS_AttributeLocalID::SALOMEDS_AttributeLocalID(SALOMEDS::AttributeLocalID_ptr theAttr)
15 :SALOMEDS_GenericAttribute(theAttr)
16 {}
17
18 SALOMEDS_AttributeLocalID::~SALOMEDS_AttributeLocalID()
19 {}
20
21 int SALOMEDS_AttributeLocalID::Value()
22 {
23   int aValue;
24   if(_isLocal) aValue = (bool)Handle(SALOMEDSImpl_AttributeLocalID)::DownCast(_local_impl)->Value();
25   else aValue = SALOMEDS::AttributeLocalID::_narrow(_corba_impl)->Value();
26   return aValue;
27 }
28  
29 void SALOMEDS_AttributeLocalID::SetValue(int value)
30 {
31   CheckLocked();
32   if(_isLocal) Handle(SALOMEDSImpl_AttributeLocalID)::DownCast(_local_impl)->SetValue(value);
33   else SALOMEDS::AttributeLocalID::_narrow(_corba_impl)->SetValue(value);
34 }