Salome HOME
Add copyright header according to request of CEA from 06.06.2017
[modules/shaper.git] / src / SketchSolver / PlaneGCSSolver / PlaneGCSSolver_Update.h
1 // Copyright (C) 2014-2017  CEA/DEN, EDF R&D
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Lesser General Public License for more details.
12 //
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
16 //
17 // See http://www.salome-platform.org/ or
18 // email : webmaster.salome@opencascade.com<mailto:webmaster.salome@opencascade.com>
19 //
20
21 #ifndef PlaneGCSSolver_Update_H_
22 #define PlaneGCSSolver_Update_H_
23
24 #include <ModelAPI_Feature.h>
25
26 #include <list>
27 #include <memory>
28 #include <string>
29
30 class SketchSolver_Constraint;
31 class PlaneGCSSolver_Update;
32 typedef std::shared_ptr<PlaneGCSSolver_Update> UpdaterPtr;
33
34 /** \class   PlaneGCSSolver_Update
35  *  \ingroup Plugins
36  *  \brief   Send events to listeners about changing a feature
37  */
38 class PlaneGCSSolver_Update
39 {
40 public:
41   PlaneGCSSolver_Update(UpdaterPtr theNext = UpdaterPtr())
42     : myNext(theNext)
43   {}
44
45   virtual ~PlaneGCSSolver_Update() {}
46
47   /// \brief Attach listener
48   /// \param theObserver [in]  object which want to receive notifications
49   /// \param theType     [in]  receive notifications about changing objects
50   ///                          of theType and their derivatives
51   virtual void attach(SketchSolver_Constraint* theObserver, const std::string& theType) = 0;
52
53   /// \brief Detach listener
54   void detach(SketchSolver_Constraint* theObserver) {
55     std::list<SketchSolver_Constraint*>::iterator anIt = myObservers.begin();
56     for (; anIt != myObservers.end(); ++anIt)
57       if (*anIt == theObserver) {
58         myObservers.erase(anIt);
59         break;
60       }
61     // detach listener from all senders
62     if (myNext)
63       myNext->detach(theObserver);
64   }
65
66   /// \brief Send notification about update of the feature to all interested
67   virtual void update(const FeaturePtr& theFeature) = 0;
68
69 protected:
70   UpdaterPtr myNext; ///< next updater, access if current one unable to process request
71   std::list<SketchSolver_Constraint*> myObservers; ///< list of observers
72 };
73
74 #endif