X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSALOMEDS%2FSALOMEDS_AttributeParameter.cxx;h=7d59ec007fb5a46634dcba9b240ccc16c1a8b692;hb=83f6420d3682a53ec22b946b95c037e83a05ca59;hp=897ca78337356a1ceb7e11aed0d76e4bd4587098;hpb=836c34a4e2dd99f1f302a2c3ae93a51cd182368f;p=modules%2Fkernel.git diff --git a/src/SALOMEDS/SALOMEDS_AttributeParameter.cxx b/src/SALOMEDS/SALOMEDS_AttributeParameter.cxx index 897ca7833..7d59ec007 100644 --- a/src/SALOMEDS/SALOMEDS_AttributeParameter.cxx +++ b/src/SALOMEDS/SALOMEDS_AttributeParameter.cxx @@ -1,31 +1,33 @@ -// Copyright (C) 2005 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, +// Copyright (C) 2007-2013 CEA/DEN, EDF R&D, OPEN CASCADE +// +// Copyright (C) 2003-2007 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 +// 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 +// +// 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 +// 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.salome-platform.org/ +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + // File : SALOMEDS_AttributeParameter.cxx // Author : Sergey RUIN // Module : SALOME - +// #include "SALOMEDS_AttributeParameter.hxx" #include "SALOMEDS.hxx" #include -#include //======================================================================= /*! @@ -33,7 +35,7 @@ * Purpose : Creates a new instance of SALOMEDS_AttributeParameter */ //======================================================================= -SALOMEDS_AttributeParameter::SALOMEDS_AttributeParameter(const Handle(SALOMEDSImpl_AttributeParameter)& theAttr) +SALOMEDS_AttributeParameter::SALOMEDS_AttributeParameter(SALOMEDSImpl_AttributeParameter* theAttr) :SALOMEDS_GenericAttribute(theAttr) {} @@ -62,13 +64,13 @@ SALOMEDS_AttributeParameter::~SALOMEDS_AttributeParameter() * Purpose : Associates a integer value with the ID */ //======================================================================= -void SALOMEDS_AttributeParameter::SetInt(const string& theID, const int theValue) +void SALOMEDS_AttributeParameter::SetInt(const std::string& theID, const int theValue) { CheckLocked(); if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->SetInt(theID, theValue); + dynamic_cast(_local_impl)->SetInt(theID, theValue); } else SALOMEDS::AttributeParameter::_narrow(_corba_impl)->SetInt(theID.c_str(), theValue); @@ -80,12 +82,12 @@ void SALOMEDS_AttributeParameter::SetInt(const string& theID, const int theValue * Purpose : Returns a int value associated with the given ID */ //======================================================================= -int SALOMEDS_AttributeParameter::GetInt(const string& theID) +int SALOMEDS_AttributeParameter::GetInt(const std::string& theID) { int aValue; if(_isLocal) { SALOMEDS::Locker lock; - aValue = Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->GetInt(theID); + aValue = dynamic_cast(_local_impl)->GetInt(theID); } else aValue = SALOMEDS::AttributeParameter::_narrow(_corba_impl)->GetInt(theID.c_str()); @@ -98,13 +100,13 @@ int SALOMEDS_AttributeParameter::GetInt(const string& theID) * Purpose : Associates a double value with the ID */ //======================================================================= -void SALOMEDS_AttributeParameter::SetReal(const string& theID, const double& theValue) +void SALOMEDS_AttributeParameter::SetReal(const std::string& theID, const double& theValue) { CheckLocked(); if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->SetReal(theID, theValue); + dynamic_cast(_local_impl)->SetReal(theID, theValue); } else SALOMEDS::AttributeParameter::_narrow(_corba_impl)->SetReal(theID.c_str(), theValue); @@ -116,12 +118,12 @@ void SALOMEDS_AttributeParameter::SetReal(const string& theID, const double& the * Purpose : Returns a double value associated with the given ID */ //======================================================================= -double SALOMEDS_AttributeParameter::GetReal(const string& theID) +double SALOMEDS_AttributeParameter::GetReal(const std::string& theID) { double aValue; if(_isLocal) { SALOMEDS::Locker lock; - aValue = Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->GetReal(theID); + aValue = dynamic_cast(_local_impl)->GetReal(theID); } else aValue = SALOMEDS::AttributeParameter::_narrow(_corba_impl)->GetReal(theID.c_str()); @@ -134,13 +136,13 @@ double SALOMEDS_AttributeParameter::GetReal(const string& theID) * Purpose : Associates a string with the ID */ //======================================================================= -void SALOMEDS_AttributeParameter::SetString(const string& theID, const string& theValue) +void SALOMEDS_AttributeParameter::SetString(const std::string& theID, const std::string& theValue) { CheckLocked(); if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->SetString(theID, theValue); + dynamic_cast(_local_impl)->SetString(theID, theValue); } else SALOMEDS::AttributeParameter::_narrow(_corba_impl)->SetString(theID.c_str(), theValue.c_str()); @@ -152,12 +154,12 @@ void SALOMEDS_AttributeParameter::SetString(const string& theID, const string& t * Purpose : Returns a string associated with the given ID */ //======================================================================= -string SALOMEDS_AttributeParameter::GetString(const string& theID) +std::string SALOMEDS_AttributeParameter::GetString(const std::string& theID) { - string aValue; + std::string aValue; if(_isLocal) { SALOMEDS::Locker lock; - aValue = Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->GetString(theID); + aValue = dynamic_cast(_local_impl)->GetString(theID); } else aValue = SALOMEDS::AttributeParameter::_narrow(_corba_impl)->GetString(theID.c_str()); @@ -170,13 +172,13 @@ string SALOMEDS_AttributeParameter::GetString(const string& theID) * Purpose : Associates a bool value with the ID */ //======================================================================= -void SALOMEDS_AttributeParameter::SetBool(const string& theID, const bool& theValue) +void SALOMEDS_AttributeParameter::SetBool(const std::string& theID, const bool& theValue) { CheckLocked(); if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->SetBool(theID, theValue); + dynamic_cast(_local_impl)->SetBool(theID, theValue); } else SALOMEDS::AttributeParameter::_narrow(_corba_impl)->SetBool(theID.c_str(), theValue); @@ -188,11 +190,11 @@ void SALOMEDS_AttributeParameter::SetBool(const string& theID, const bool& theVa * Purpose : Returns a bool value associated with the ID */ //======================================================================= -bool SALOMEDS_AttributeParameter::GetBool(const string& theID) +bool SALOMEDS_AttributeParameter::GetBool(const std::string& theID) { if(_isLocal) { SALOMEDS::Locker lock; - return Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->GetBool(theID); + return dynamic_cast(_local_impl)->GetBool(theID); } else return SALOMEDS::AttributeParameter::_narrow(_corba_impl)->GetBool(theID.c_str()); @@ -204,13 +206,13 @@ bool SALOMEDS_AttributeParameter::GetBool(const string& theID) * Purpose : Associates an array of double values with the given ID */ //======================================================================= -void SALOMEDS_AttributeParameter::SetRealArray(const string& theID, const vector& theArray) +void SALOMEDS_AttributeParameter::SetRealArray(const std::string& theID, const std::vector& theArray) { CheckLocked(); if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->SetRealArray(theID, theArray); + dynamic_cast(_local_impl)->SetRealArray(theID, theArray); } else { SALOMEDS::DoubleSeq_var aSeq = new SALOMEDS::DoubleSeq; @@ -229,12 +231,12 @@ void SALOMEDS_AttributeParameter::SetRealArray(const string& theID, const vector * Purpose : Returns an array of double values associated with the ID */ //======================================================================= -vector SALOMEDS_AttributeParameter::GetRealArray(const string& theID) +std::vector SALOMEDS_AttributeParameter::GetRealArray(const std::string& theID) { - vector v; + std::vector v; if(_isLocal) { SALOMEDS::Locker lock; - return Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->GetRealArray(theID); + return dynamic_cast(_local_impl)->GetRealArray(theID); } else { SALOMEDS::DoubleSeq_var aSeq = SALOMEDS::AttributeParameter::_narrow(_corba_impl)->GetRealArray(theID.c_str()); @@ -253,13 +255,13 @@ vector SALOMEDS_AttributeParameter::GetRealArray(const string& theID) * Purpose : Associates an array of int values with the given ID */ //======================================================================= -void SALOMEDS_AttributeParameter::SetIntArray(const string& theID, const vector& theArray) +void SALOMEDS_AttributeParameter::SetIntArray(const std::string& theID, const std::vector& theArray) { CheckLocked(); if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->SetIntArray(theID, theArray); + dynamic_cast(_local_impl)->SetIntArray(theID, theArray); } else { SALOMEDS::LongSeq_var aSeq = new SALOMEDS::LongSeq; @@ -278,12 +280,12 @@ void SALOMEDS_AttributeParameter::SetIntArray(const string& theID, const vector< * Purpose : Returns an array of int values associated with the ID */ //======================================================================= -vector SALOMEDS_AttributeParameter::GetIntArray(const string& theID) +std::vector SALOMEDS_AttributeParameter::GetIntArray(const std::string& theID) { - vector v; + std::vector v; if(_isLocal) { SALOMEDS::Locker lock; - return Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->GetIntArray(theID); + return dynamic_cast(_local_impl)->GetIntArray(theID); } else { SALOMEDS::LongSeq_var aSeq = SALOMEDS::AttributeParameter::_narrow(_corba_impl)->GetIntArray(theID.c_str()); @@ -302,13 +304,13 @@ vector SALOMEDS_AttributeParameter::GetIntArray(const string& theID) * Purpose : Associates an array of string values with the given ID */ //======================================================================= -void SALOMEDS_AttributeParameter::SetStrArray(const string& theID, const vector& theArray) +void SALOMEDS_AttributeParameter::SetStrArray(const std::string& theID, const std::vector& theArray) { CheckLocked(); if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->SetStrArray(theID, theArray); + dynamic_cast(_local_impl)->SetStrArray(theID, theArray); } else { SALOMEDS::StringSeq_var aSeq = new SALOMEDS::StringSeq; @@ -327,19 +329,19 @@ void SALOMEDS_AttributeParameter::SetStrArray(const string& theID, const vector< * Purpose : Returns an array of string values associated with the ID */ //======================================================================= -vector SALOMEDS_AttributeParameter::GetStrArray(const string& theID) +std::vector SALOMEDS_AttributeParameter::GetStrArray(const std::string& theID) { - vector v; + std::vector v; if(_isLocal) { SALOMEDS::Locker lock; - return Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->GetStrArray(theID); + return dynamic_cast(_local_impl)->GetStrArray(theID); } else { SALOMEDS::StringSeq_var aSeq = SALOMEDS::AttributeParameter::_narrow(_corba_impl)->GetStrArray(theID.c_str()); int length = aSeq->length(); if(length) { v.resize(length); - for(int i = 0; i < length; i++) v[i] = string(aSeq[i].in()); + for(int i = 0; i < length; i++) v[i] = std::string(aSeq[i].in()); } } return v; @@ -353,11 +355,11 @@ vector SALOMEDS_AttributeParameter::GetStrArray(const string& theID) * a value in the attribute */ //======================================================================= -bool SALOMEDS_AttributeParameter::IsSet(const string& theID, const int theType) +bool SALOMEDS_AttributeParameter::IsSet(const std::string& theID, const int theType) { if(_isLocal) { SALOMEDS::Locker lock; - return Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->IsSet(theID, (Parameter_Types)theType); + return dynamic_cast(_local_impl)->IsSet(theID, (Parameter_Types)theType); } else return SALOMEDS::AttributeParameter::_narrow(_corba_impl)->IsSet(theID.c_str(), theType); @@ -369,13 +371,13 @@ bool SALOMEDS_AttributeParameter::IsSet(const string& theID, const int theType) * Purpose : Removes a parameter with given ID */ //======================================================================= -bool SALOMEDS_AttributeParameter::RemoveID(const string& theID, const int theType) +bool SALOMEDS_AttributeParameter::RemoveID(const std::string& theID, const int theType) { CheckLocked(); if(_isLocal) { SALOMEDS::Locker lock; - return Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->RemoveID(theID, (Parameter_Types)theType); + return dynamic_cast(_local_impl)->RemoveID(theID, (Parameter_Types)theType); } else return SALOMEDS::AttributeParameter::_narrow(_corba_impl)->RemoveID(theID.c_str(), theType); @@ -392,8 +394,8 @@ _PTR(AttributeParameter) SALOMEDS_AttributeParameter::GetFather() SALOMEDSClient_AttributeParameter* AP = NULL; if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter) AP_impl = Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->GetFather(); - if(AP_impl.IsNull()) return _PTR(AttributeParameter)(AP); + SALOMEDSImpl_AttributeParameter* AP_impl = dynamic_cast(_local_impl)->GetFather(); + if(!AP_impl) return _PTR(AttributeParameter)(AP); AP = new SALOMEDS_AttributeParameter(AP_impl); } else { @@ -415,7 +417,7 @@ bool SALOMEDS_AttributeParameter::HasFather() { if(_isLocal) { SALOMEDS::Locker lock; - return Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->HasFather(); + return dynamic_cast(_local_impl)->HasFather(); } else return SALOMEDS::AttributeParameter::_narrow(_corba_impl)->HasFather(); @@ -431,7 +433,7 @@ bool SALOMEDS_AttributeParameter::IsRoot() { if(_isLocal) { SALOMEDS::Locker lock; - return Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->IsRoot(); + return dynamic_cast(_local_impl)->IsRoot(); } else return SALOMEDS::AttributeParameter::_narrow(_corba_impl)->IsRoot(); @@ -447,7 +449,7 @@ void SALOMEDS_AttributeParameter::Clear() { if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl)->Clear(); + dynamic_cast(_local_impl)->Clear(); } else SALOMEDS::AttributeParameter::_narrow(_corba_impl)->Clear(); @@ -459,12 +461,12 @@ void SALOMEDS_AttributeParameter::Clear() * Purpose : Returns an array of all ID's of the given type */ //======================================================================= -vector SALOMEDS_AttributeParameter::GetIDs(const int theType) +std::vector SALOMEDS_AttributeParameter::GetIDs(const int theType) { - vector v; + std::vector v; if(_isLocal) { SALOMEDS::Locker lock; - Handle(SALOMEDSImpl_AttributeParameter) AP_impl = Handle(SALOMEDSImpl_AttributeParameter)::DownCast(_local_impl); + SALOMEDSImpl_AttributeParameter* AP_impl = dynamic_cast(_local_impl); return AP_impl->GetIDs((Parameter_Types)theType); } else { @@ -473,7 +475,7 @@ vector SALOMEDS_AttributeParameter::GetIDs(const int theType) int length = CorbaSeq->length(); if(length) { v.resize(length); - for(int i = 0; i