Salome HOME
Update copyrights
[modules/yacs.git] / src / engine / InGate.hxx
1 // Copyright (C) 2006-2019  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
20 #ifndef __INGATE_HXX__
21 #define __INGATE_HXX__
22
23 #include "YACSlibEngineExport.hxx"
24 #include "Port.hxx"
25 #include "define.hxx"
26
27 #include <list>
28
29 namespace YACS
30 {
31   namespace ENGINE
32   {
33     class OutGate;
34
35     class YACSLIBENGINE_EXPORT InGate : public Port
36     {
37       friend class Bloc;
38       friend class Node;
39     protected:
40       static const char NAME[];
41     private:
42       std::list< std::pair<OutGate *, bool> > _backLinks;
43     public:
44       InGate(Node *node);
45       virtual ~InGate();
46       std::string getNameOfTypeOfCurrentInstance() const;
47       void exNotifyFromPrecursor(OutGate *fromgate);
48       std::list< std::pair<OutGate *, bool> >& edMapOutGate() { return _backLinks; }
49       void edAppendPrecursor(OutGate *fromgate);
50       void edRemovePrecursor(OutGate *fromgate);
51       int getNumberOfBackLinks() const;
52       void edDisconnectAllLinksToMe();
53       void exNotifyFailed();
54       void exNotifyDisabled();
55       void exReset();
56       bool exIsReady() const;
57       std::list<OutGate *> getBackLinks();
58       void setPrecursorDone(OutGate *fromgate);
59       virtual std::string typeName() {return "YACS__ENGINE__InGate";}
60     };
61   }
62 }
63
64 #endif