Salome HOME
Fix of too long line problem.
[modules/shaper.git] / src / ExchangePlugin / ExchangePlugin_ImportFeature.cpp
index def3e6e6200b692d1d7e39a15cec0e56891cb8d3..e6f2e8f3e28cdebdf29df214eb86a4a729e590b1 100644 (file)
@@ -1,8 +1,21 @@
-// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
-
-// File:    ExchangePlugin_ImportFeature.cpp
-// Created: Aug 28, 2014
-// Authors:  Sergey BELASH, Sergey POKHODENKO
+// Copyright (C) 2014-2019  CEA/DEN, EDF R&D
+//
+// 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, or (at your option) any later version.
+//
+// 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.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
 
 #include <ExchangePlugin_ImportFeature.h>
 
@@ -190,7 +203,7 @@ void ExchangePlugin_ImportFeature::importXAO(const std::string& theFileName)
       // complex conversion of element index to reference id
       int anElementID = aXaoGroup->get(anElementIndex);
       std::string aReferenceString =
-          aXaoGeometry->getElementReference(aXaoGroup->getDimension(), anElementID);
+        aXaoGeometry->getElementReference(aXaoGroup->getDimension(), anElementID);
       int aReferenceID = XAO::XaoUtils::stringToInt(aReferenceString);
 
       aSelectionList->value(anElementIndex)->setId(aReferenceID);
@@ -318,11 +331,13 @@ void ExchangePlugin_ImportFeature::importXAO(const std::string& theFileName)
   ModelAPI_EventCreator::get()->sendReordered(
     std::dynamic_pointer_cast<ModelAPI_Feature>(aRefListOfGroups->owner()));
 
+// LCOV_EXCL_START
   } catch (XAO::XAO_Exception& e) {
     std::string anError = e.what();
     setError("An error occurred while importing " + theFileName + ": " + anError);
     return;
   }
+// LCOV_EXCL_STOP
 }
 
 //============================================================================
@@ -337,6 +352,7 @@ std::shared_ptr<ModelAPI_Feature> ExchangePlugin_ImportFeature::addFeature(
   return aNew;
 }
 
+// LCOV_EXCL_START
 void ExchangePlugin_ImportFeature::removeFeature(
     std::shared_ptr<ModelAPI_Feature> theFeature)
 {
@@ -345,6 +361,7 @@ void ExchangePlugin_ImportFeature::removeFeature(
   AttributeRefListPtr aList = reflist(FEATURES_ID());
   aList->remove(theFeature);
 }
+// LCOV_EXCL_STOP
 
 int ExchangePlugin_ImportFeature::numberOfSubs(bool forTree) const
 {
@@ -359,6 +376,7 @@ std::shared_ptr<ModelAPI_Feature> ExchangePlugin_ImportFeature::subFeature(
   return aRes;
 }
 
+// LCOV_EXCL_START
 int ExchangePlugin_ImportFeature::subFeatureId(const int theIndex) const
 {
   std::shared_ptr<ModelAPI_AttributeRefList> aRefList = std::dynamic_pointer_cast<
@@ -376,6 +394,7 @@ int ExchangePlugin_ImportFeature::subFeatureId(const int theIndex) const
   }
   return aResultIndex;
 }
+// LCOV_EXCL_STOP
 
 bool ExchangePlugin_ImportFeature::isSub(ObjectPtr theObject) const
 {
@@ -396,5 +415,5 @@ void ExchangePlugin_ImportFeature::loadNamingDS(
 
   int aTag(1);
   std::string aNameMS = "Shape";
-  theResultBody->loadFirstLevel(theGeomShape, aNameMS, aTag);
+  theResultBody->loadFirstLevel(theGeomShape, aNameMS);
 }