X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchAPI%2FSketchAPI_Mirror.h;h=45d4c2c73e65b23b3398d96365c74383bcb6bb8f;hb=d5c7ad3c50f89a2ddc2de1866ffb7f09397f3be2;hp=ab77061ea8671ad68ffb505cd9b2061d58201e15;hpb=d34842c50d5f335cca443c78910c16c54139c7d0;p=modules%2Fshaper.git diff --git a/src/SketchAPI/SketchAPI_Mirror.h b/src/SketchAPI/SketchAPI_Mirror.h index ab77061ea..45d4c2c73 100644 --- a/src/SketchAPI/SketchAPI_Mirror.h +++ b/src/SketchAPI/SketchAPI_Mirror.h @@ -1,14 +1,28 @@ -// Name : SketchAPI_Mirror.h -// Purpose: +// 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 // -// History: -// 16/06/16 - Sergey POKHODENKO - Creation of the file #ifndef SRC_SKETCHAPI_SKETCHAPI_MIRROR_H_ #define SRC_SKETCHAPI_SKETCHAPI_MIRROR_H_ //-------------------------------------------------------------------------------------- #include "SketchAPI.h" +#include "SketchAPI_SketchEntity.h" #include @@ -40,12 +54,20 @@ public: virtual ~SketchAPI_Mirror(); INTERFACE_4(SketchPlugin_ConstraintMirror::ID(), - mirrorLine, SketchPlugin_ConstraintMirror::ENTITY_A(), ModelAPI_AttributeRefAttr, /** Mirror line */, - mirrorList, SketchPlugin_ConstraintMirror::MIRROR_LIST_ID(), ModelAPI_AttributeRefList, /** Mirror list */, - referenceObjects, SketchPlugin_ConstraintMirror::ENTITY_B(), ModelAPI_AttributeRefList, /** Reference objects */, - mirroredObjects, SketchPlugin_ConstraintMirror::ENTITY_C(), ModelAPI_AttributeRefList, /** Mirrored objects */ + mirrorLine, SketchPlugin_ConstraintMirror::ENTITY_A(), + ModelAPI_AttributeRefAttr, /** Mirror line */, + mirrorList, SketchPlugin_ConstraintMirror::MIRROR_LIST_ID(), + ModelAPI_AttributeRefList, /** Mirror list */, + referenceObjects, SketchPlugin_ConstraintMirror::ENTITY_B(), + ModelAPI_AttributeRefList, /** Reference objects */, + mirroredObjects, SketchPlugin_ConstraintMirror::ENTITY_C(), + ModelAPI_AttributeRefList, /** Mirrored objects */ ) + /// List of mirrored objects + SKETCHAPI_EXPORT + std::list > mirrored() const; + /// Dump wrapped feature virtual void dump(ModelHighAPI_Dumper& theDumper) const; };