Salome HOME
Issue #1834: Fix length of lines
[modules/shaper.git] / src / SketchAPI / SketchAPI_SketchEntity.cpp
index 24758c6803b8f70bd7422ec95e202a613b8d493a..b693505d1ab44df2e9e158acbc33f4d02eaf5d12 100644 (file)
@@ -1,3 +1,4 @@
+// Copyright (C) 2014-20xx CEA/DEN, EDF R&D
 // Name   : SketchAPI_SketchEntity.cpp
 // Purpose: 
 //
@@ -87,7 +88,8 @@ SketchAPI_SketchEntity::wrap(const std::list<std::shared_ptr<ModelAPI_Feature> >
     else if ((*anIt)->getKind() == SketchPlugin_Point::ID())
       aResult.push_back(std::shared_ptr<ModelHighAPI_Interface>(new SketchAPI_Point(*anIt)));
     else if ((*anIt)->getKind() == SketchPlugin_IntersectionPoint::ID())
-      aResult.push_back(std::shared_ptr<ModelHighAPI_Interface>(new SketchAPI_IntersectionPoint(*anIt)));
+      aResult.push_back(std::shared_ptr<ModelHighAPI_Interface>(
+                                                    new SketchAPI_IntersectionPoint(*anIt)));
   }
   return aResult;
 }