Salome HOME
Copyright update: 2016
[modules/yacs.git] / src / evalyfx / YACSEvalObserver.hxx
1 // Copyright (C) 2012-2016  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 email : webmaster.salome@opencascade.com
18 //
19 // Author : Anthony Geay (EDF R&D)
20
21 #ifndef __YACSEVALOBSERVER_HXX__
22 #define __YACSEVALOBSERVER_HXX__
23
24 #include "YACSEvalYFXExport.hxx"
25
26 #include <string>
27
28 class YACSEvalYFX;
29
30 class YACSEvalObserver
31 {
32 public:
33   YACSEVALYFX_EXPORT YACSEvalObserver():_cnt(1) { }
34   YACSEVALYFX_EXPORT YACSEvalObserver(const YACSEvalObserver& other):_cnt(1) { }// counter must be equal to 1 even in case of copy
35   YACSEVALYFX_EXPORT void incrRef() const;
36   YACSEVALYFX_EXPORT bool decrRef() const;
37   YACSEVALYFX_EXPORT int getCnt() const { return _cnt; }
38   YACSEVALYFX_EXPORT virtual void notifyNumberOfSamplesToEval(YACSEvalYFX *sender, int nbOfSamples) = 0;
39   YACSEVALYFX_EXPORT virtual void notifyNewNumberOfPassedItems(YACSEvalYFX *sender, int sampleId) = 0;
40   //YACSEVALYFX_EXPORT virtual void warningHappen(const std::string& warnDetails) = 0;
41   //YACSEVALYFX_EXPORT virtual void errorHappen(const std::string& errorDetails) = 0;
42 private:
43   virtual ~YACSEvalObserver() { }
44 private:
45   mutable int _cnt;
46 };
47
48 #endif