Salome HOME
Fix coding style. Lines should be <= 100 characters long.
authorChristophe Bourcier <christophe.bourcier@cea.fr>
Tue, 5 Dec 2017 14:33:08 +0000 (15:33 +0100)
committerChristophe Bourcier <christophe.bourcier@cea.fr>
Tue, 5 Dec 2017 14:33:08 +0000 (15:33 +0100)
src/ExchangeAPI/ExchangeAPI_Export.cpp

index 71666dca3b28ca86cf1970627ddaff1ee5155172..7bbb3ac9b64f53d89352daafb22e8d8fb6cdd992 100644 (file)
@@ -84,12 +84,14 @@ void ExchangeAPI_Export::dump(ModelHighAPI_Dumper& theDumper) const
   std::string exportType = aBase->string(ExchangePlugin_ExportFeature::EXPORT_TYPE_ID())->value();
 
   if (exportType == "XAO") {
-    std::string tmpXAOFile = aBase->string(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID())->value();
+    std::string tmpXAOFile =
+                aBase->string(ExchangePlugin_ExportFeature::XAO_FILE_PATH_ID())->value();
     theDumper << "exportToXAO(" << aDocName << ", '" << tmpXAOFile << "'" ;
     std::string theAuthor = aBase->string(ExchangePlugin_ExportFeature::XAO_AUTHOR_ID())->value();
     if (not theAuthor.empty())
       theDumper << ", '" << theAuthor << "'";
-    std::string theGeometryName = aBase->string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID())->value();
+    std::string theGeometryName =
+                aBase->string(ExchangePlugin_ExportFeature::XAO_GEOMETRY_NAME_ID())->value();
     if (not theGeometryName.empty())
       theDumper << ", '" << theGeometryName << "'";
     theDumper << ")" << std::endl;
@@ -98,7 +100,8 @@ void ExchangeAPI_Export::dump(ModelHighAPI_Dumper& theDumper) const
       theDumper << "exportToFile(" << aDocName << ", " <<
           aBase->string(ExchangePlugin_ExportFeature::FILE_PATH_ID()) << ", " <<
           aBase->selectionList(ExchangePlugin_ExportFeature::SELECTION_LIST_ID()) ;
-      std::string theFileFormat = aBase->string(ExchangePlugin_ExportFeature::FILE_FORMAT_ID())->value();
+      std::string theFileFormat =
+                  aBase->string(ExchangePlugin_ExportFeature::FILE_FORMAT_ID())->value();
       if (not theFileFormat.empty())
         theDumper << ", '" << theFileFormat << "'";
       theDumper << ")" << std::endl;