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