X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSALOMEDSImpl%2FTest%2FSALOMEDSImplTest.cxx;h=e801afc58c4feb7d30c49d51e31ff2f075059f65;hb=288dc1c84630e521220d796b7c88c518f34856d5;hp=4092158ddf1bedbfed5947ab5a8ddbd58e14c533;hpb=7d2fe213bdf5bf962ce11e253020c9d3e0bc1cce;p=modules%2Fyacs.git diff --git a/src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx b/src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx index 4092158dd..e801afc58 100644 --- a/src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx +++ b/src/SALOMEDSImpl/Test/SALOMEDSImplTest.cxx @@ -1,24 +1,25 @@ -// Copyright (C) 2007-2008 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2012 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 +// 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 -// version 2.1 of the License. +// 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. +// 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 +// 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/ or email : webmaster.salome@opencascade.com +// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com // + #include "SALOMEDSImplTest.hxx" #include @@ -34,7 +35,6 @@ #include "SALOMEDSImpl_StudyBuilder.hxx" #include "SALOMEDSImpl_GenericAttribute.hxx" -using namespace std; // ============================================================================ /*! @@ -90,7 +90,7 @@ void SALOMEDSImplTest::testAttributeParameter() CPPUNIT_ASSERT(_ap->IsSet("BoolValue", PT_BOOLEAN)); CPPUNIT_ASSERT(!_ap->GetBool("BoolValue")); - vector intArray; + std::vector intArray; intArray.push_back(0); intArray.push_back(1); @@ -99,7 +99,7 @@ void SALOMEDSImplTest::testAttributeParameter() CPPUNIT_ASSERT(_ap->GetIntArray("IntArray")[0] == 0); CPPUNIT_ASSERT(_ap->GetIntArray("IntArray")[1] == 1); - vector realArray; + std::vector realArray; realArray.push_back(0.0); realArray.push_back(1.1); @@ -108,7 +108,7 @@ void SALOMEDSImplTest::testAttributeParameter() CPPUNIT_ASSERT(_ap->GetRealArray("RealArray")[0] == 0.0); CPPUNIT_ASSERT(_ap->GetRealArray("RealArray")[1] == 1.1); - vector strArray; + std::vector strArray; strArray.push_back("hello"); strArray.push_back("world");