X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fengine%2FOutGate.hxx;h=53015b770e77265c5e10dccc62892051d3653404;hb=eb87b5afd7d814cdce825c6e75342001fe01b978;hp=18694094af0811699723f3a915bbbbc1c5249230;hpb=a84e60a749da66dffb73297fa5082b70b9d62f7d;p=modules%2Fyacs.git diff --git a/src/engine/OutGate.hxx b/src/engine/OutGate.hxx index 18694094a..53015b770 100644 --- a/src/engine/OutGate.hxx +++ b/src/engine/OutGate.hxx @@ -1,11 +1,30 @@ +// Copyright (C) 2006-2016 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 +// + #ifndef __OUTGATE_HXX__ #define __OUTGATE_HXX__ +#include "YACSlibEngineExport.hxx" #include "Port.hxx" #include "Exception.hxx" -#include -#include +#include namespace YACS { @@ -14,11 +33,11 @@ namespace YACS class InGate; class ElementaryNode; - class OutGate : public Port + class YACSLIBENGINE_EXPORT OutGate : public Port { friend class ElementaryNode; protected: - std::map _setOfInGate; + std::list< std::pair< InGate *, bool > > _setOfInGate; public: static const char NAME[]; public: @@ -30,13 +49,14 @@ namespace YACS void exNotifyDisabled(); void edDisconnectAllLinksFromMe(); bool edAddInGate(InGate *inGate); - std::map& edMapInGate() { return _setOfInGate; } - std::set edSetInGate() const; + std::list< std::pair< InGate *, bool> >& edMapInGate() { return _setOfInGate; } + std::list edSetInGate() const; void edRemoveInGate(InGate *inGate, bool coherenceWithInGate=true) throw(Exception); int getNbOfInGatesConnected() const; + bool isAlreadyInSet(InGate *inGate) const; + virtual std::string typeName() {return "YACS__ENGINE__OutGate";} protected: void edRemoveInGateOneWay(InGate *inGate); - bool isAlreadyInSet(InGate *inGate) const; }; } }