X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FSketchSolver%2FPlaneGCSSolver%2FPlaneGCSSolver_EntityWrapper.h;h=b6800de48cca4562755a49fc0ca806de355aeaba;hb=77ce6d35ac8d2f0fdaecb4f23e0870bf74e36103;hp=38c92198a494a3d8d08476be9bc18a5db407cd5f;hpb=83e4015d7099a1f87aae13a2811590dac27a6344;p=modules%2Fshaper.git diff --git a/src/SketchSolver/PlaneGCSSolver/PlaneGCSSolver_EntityWrapper.h b/src/SketchSolver/PlaneGCSSolver/PlaneGCSSolver_EntityWrapper.h index 38c92198a..b6800de48 100644 --- a/src/SketchSolver/PlaneGCSSolver/PlaneGCSSolver_EntityWrapper.h +++ b/src/SketchSolver/PlaneGCSSolver/PlaneGCSSolver_EntityWrapper.h @@ -1,37 +1,70 @@ -// Copyright (C) 2014-20xx CEA/DEN, EDF R&D - -// File: PlaneGCSSolver_EntityWrapper.h -// Created: 14 Dec 2015 -// Author: Artem ZHIDKOV +// Copyright (C) 2014-2024 CEA, EDF +// +// 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 +// #ifndef PlaneGCSSolver_EntityWrapper_H_ #define PlaneGCSSolver_EntityWrapper_H_ #include -#include + +#include +#include + +class ModelAPI_Attribute; + +class PlaneGCSSolver_EntityWrapper; +typedef std::shared_ptr EntityWrapperPtr; /** - * Wrapper providing operations with PlaneGCS entities (lines, circles and arcs). + * Wrapper providing operations with entities regardless the solver. */ -class PlaneGCSSolver_EntityWrapper : public SketchSolver_IEntityWrapper +class PlaneGCSSolver_EntityWrapper { public: - PlaneGCSSolver_EntityWrapper(const GCSCurvePtr theEntity); - - /// \brief Return PlaneGCS geometric entity - const GCSCurvePtr& entity() const - { return myEntity; } - /// \brief Return PlaneGCS geometric entity to change - GCSCurvePtr& changeEntity() - { return myEntity; } + PlaneGCSSolver_EntityWrapper() : myExternal(false) {} + virtual ~PlaneGCSSolver_EntityWrapper() {} /// \brief Return type of current entity - virtual SketchSolver_EntityType type() const - { return myType; } + virtual SketchSolver_EntityType type() const = 0; + + /// \brief Change flag indicating the entity cannot be changed in the solver + void setExternal(bool theExternal) { myExternal = theExternal; } + /// \brief Return the External flag + bool isExternal() const { return myExternal; } + + /// \brief Store names of attributes and their values if necessary + void setAdditionalAttributes(const std::map& theAttribues) + { myAdditionalAttributes = theAttribues; } + /// \brief Return the list of additional attributes + const std::map& additionalAttributes() const + { return myAdditionalAttributes; } + +protected: + /// \brief Update entity by the values of theAttribute + /// \return \c true if any value of attribute is not equal to the stored in the entity + virtual bool update(std::shared_ptr theAttribute) + { return false; } + + friend class PlaneGCSSolver_AttributeBuilder; private: - SketchSolver_EntityType myType; - GCSCurvePtr myEntity; + bool myExternal; + std::map myAdditionalAttributes; }; #endif