Salome HOME
Sources formated according to the codeing standards
[modules/shaper.git] / src / SketchPlugin / SketchPlugin_Feature.cpp
index 4edfeb8f90f2f82850d1d48cad118691ecb6158c..c3c800bd992ca865bfe4ec7ba0637964c8ac6cfb 100644 (file)
@@ -16,14 +16,14 @@ SketchPlugin_Sketch* SketchPlugin_Feature::sketch()
   if (!mySketch) {
     // find sketch that references to this feature
     int aSketches = document()->size(ModelAPI_Feature::group());
-    for(int a = 0; a < aSketches && !mySketch; a++) {
-      boost::shared_ptr<SketchPlugin_Sketch> aSketch = boost::
-        dynamic_pointer_cast<SketchPlugin_Sketch>(document()->object(ModelAPI_Feature::group(), a));
+    for (int a = 0; a < aSketches && !mySketch; a++) {
+      boost::shared_ptr<SketchPlugin_Sketch> aSketch = boost::dynamic_pointer_cast<
+          SketchPlugin_Sketch>(document()->object(ModelAPI_Feature::group(), a));
       if (aSketch) {
-        std::list<ObjectPtr> aList =
-          aSketch->data()->reflist(SketchPlugin_Sketch::FEATURES_ID())->list();
+        std::list<ObjectPtr> aList = aSketch->data()->reflist(SketchPlugin_Sketch::FEATURES_ID())
+            ->list();
         std::list<ObjectPtr>::iterator aSub = aList.begin();
-        for(; aSub != aList.end(); aSub++) {
+        for (; aSub != aList.end(); aSub++) {
           if ((*aSub)->data()->isEqual(data())) {
             mySketch = aSketch.get();
             break;
@@ -35,14 +35,15 @@ SketchPlugin_Sketch* SketchPlugin_Feature::sketch()
   return mySketch;
 }
 
-AISObjectPtr SketchPlugin_Feature::simpleAISObject(
-    boost::shared_ptr<ModelAPI_Result> theRes, AISObjectPtr thePrevious)
+AISObjectPtr SketchPlugin_Feature::simpleAISObject(boost::shared_ptr<ModelAPI_Result> theRes,
+                                                   AISObjectPtr thePrevious)
 {
-  boost::shared_ptr<ModelAPI_ResultConstruction> aConstr = 
-    boost::dynamic_pointer_cast<ModelAPI_ResultConstruction>(theRes);
+  boost::shared_ptr<ModelAPI_ResultConstruction> aConstr = boost::dynamic_pointer_cast<
+      ModelAPI_ResultConstruction>(theRes);
 
   boost::shared_ptr<GeomAPI_Shape> aPreview;
-  if (aConstr) aPreview = aConstr->shape();
+  if (aConstr)
+    aPreview = aConstr->shape();
 
   AISObjectPtr aResult = thePrevious;
   if (!aResult)