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