X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchAPI%2FSketchAPI_SketchEntity.cpp;h=b693505d1ab44df2e9e158acbc33f4d02eaf5d12;hb=63f80d9837b4dcb16e9fafc3b07fac36f6f7b00d;hp=24758c6803b8f70bd7422ec95e202a613b8d493a;hpb=b0e217e6399717e35fcfe2ada28dd6c5213d3721;p=modules%2Fshaper.git diff --git a/src/SketchAPI/SketchAPI_SketchEntity.cpp b/src/SketchAPI/SketchAPI_SketchEntity.cpp index 24758c680..b693505d1 100644 --- a/src/SketchAPI/SketchAPI_SketchEntity.cpp +++ b/src/SketchAPI/SketchAPI_SketchEntity.cpp @@ -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 > else if ((*anIt)->getKind() == SketchPlugin_Point::ID()) aResult.push_back(std::shared_ptr(new SketchAPI_Point(*anIt))); else if ((*anIt)->getKind() == SketchPlugin_IntersectionPoint::ID()) - aResult.push_back(std::shared_ptr(new SketchAPI_IntersectionPoint(*anIt))); + aResult.push_back(std::shared_ptr( + new SketchAPI_IntersectionPoint(*anIt))); } return aResult; }