X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSALOMEDS%2FSALOMEDS_AttributeName_i.cxx;h=b495f26bfb805f077a8fe3715307d9b10b22e535;hb=83abcf69126ce0eebb0b43e50d9a200e54a5df3f;hp=377559280310755b2ab7104e4c6625dd1c5c0758;hpb=4655b0b0eb5345da6a86852021014b0cbae2ad30;p=modules%2Fkernel.git diff --git a/src/SALOMEDS/SALOMEDS_AttributeName_i.cxx b/src/SALOMEDS/SALOMEDS_AttributeName_i.cxx index 377559280..b495f26bf 100644 --- a/src/SALOMEDS/SALOMEDS_AttributeName_i.cxx +++ b/src/SALOMEDS/SALOMEDS_AttributeName_i.cxx @@ -1,17 +1,36 @@ -using namespace std; -// File : SALOMEDS_AttributeName_i.cxx -// Created : Fri Jul 05 14:40:12 2002 -// Author : Yves FRICAUD - -// Project : SALOME -// Module : SALOMEDS -// Copyright : Open CASCADE 2002 +// SALOME SALOMEDS : data structure of SALOME and sources of Salome data server +// +// Copyright (C) 2003 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS +// +// This library is free software; you can redistribute it and/or +// modify it under the terms of the GNU Lesser General Public +// License as published by the Free Software Foundation; either +// version 2.1 of the License. +// +// This library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, write to the Free Software +// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA +// +// See http://www.opencascade.org/SALOME/ or email : webmaster.salome@opencascade.org +// +// +// +// File : SALOMEDS_AttributeName_i.cxx +// Author : Yves FRICAUD +// Module : SALOME // $Header$ - #include "SALOMEDS_AttributeName_i.hxx" #include -#include "SALOMEDS_SObject_i.hxx" +#include + +using namespace std; char* SALOMEDS_AttributeName_i::Value() { TCollection_ExtendedString S = Handle(TDataStd_Name)::DownCast(_myAttr)->Get(); @@ -19,8 +38,15 @@ char* SALOMEDS_AttributeName_i::Value() { return c_s._retn(); } -void SALOMEDS_AttributeName_i::SetValue(const char* value) { +void SALOMEDS_AttributeName_i::SetValue(const char* theValue) { CheckLocked(); - CORBA::String_var Str = CORBA::string_dup(value); - Handle(TDataStd_Name)::DownCast(_myAttr)->Set(TCollection_ExtendedString(Str)); + Handle(TDataStd_Name)::DownCast(_myAttr)->Set(TCollection_ExtendedString((char*)theValue)); +} + +char* SALOMEDS_AttributeName_i::Store() { + return Value(); +} + +void SALOMEDS_AttributeName_i::Restore(const char* value) { + SetValue(value); }