X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2Fengine%2FLinkInfo.cxx;h=f2e4101b32eb5fbf72ed1d4ae7e5e62791145c6d;hb=f3b2b68ffecc5033287a7a255c8507f8989fb87f;hp=550126b57afe51457e2aff0e248b2a7d94cfce4c;hpb=313a04631c63078d01c2f643a53500ec549d034e;p=modules%2Fyacs.git diff --git a/src/engine/LinkInfo.cxx b/src/engine/LinkInfo.cxx index 550126b57..f2e4101b3 100644 --- a/src/engine/LinkInfo.cxx +++ b/src/engine/LinkInfo.cxx @@ -1,3 +1,22 @@ +// Copyright (C) 2006-2013 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. +// +// 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 +// + #include "LinkInfo.hxx" #include "Switch.hxx" @@ -31,13 +50,13 @@ void LinkInfo::startCollapseTransac() _level++; } -void LinkInfo::endCollapseTransac() throw(Exception) +void LinkInfo::endCollapseTransac() throw(YACS::Exception) { if(--_level==0) { if(_levelOfInfo==ALL_STOP_ASAP) if(areWarningsOrErrors()) - throw(getGlobalRepr()); + throw Exception(getGlobalRepr()); else if(_levelOfInfo==WARN_ONLY_DONT_STOP) if(getNumberOfWarnLinksGrp(W_ALL)!=0) throw Exception(getErrRepr()); @@ -64,7 +83,7 @@ void LinkInfo::pushWarnLink(OutPort *semStart, InPort *end, WarnReason reason) _collapse[reason].back().push_back(pair(semStart,end)); } -void LinkInfo::pushErrLink(OutPort *semStart, InPort *end, ErrReason reason) throw(Exception) +void LinkInfo::pushErrLink(OutPort *semStart, InPort *end, ErrReason reason) throw(YACS::Exception) { if(reason==E_NEVER_SET_INPUTPORT) _unsetInPort.push_back(end); @@ -73,15 +92,15 @@ void LinkInfo::pushErrLink(OutPort *semStart, InPort *end, ErrReason reason) thr else _errors[reason].push_back(pair(semStart,end)); if(_level==0) - if(_levelOfInfo==ALL_STOP_ASAP or _levelOfInfo==WARN_ONLY_DONT_STOP) + if(_levelOfInfo==ALL_STOP_ASAP || _levelOfInfo==WARN_ONLY_DONT_STOP) throw Exception(getErrRepr()); } -void LinkInfo::pushErrSwitch(CollectorSwOutPort *collector) throw(Exception) +void LinkInfo::pushErrSwitch(CollectorSwOutPort *collector) throw(YACS::Exception) { _errorsOnSwitchCases.push_back(collector); if(_level==0) - if(_levelOfInfo==ALL_STOP_ASAP or _levelOfInfo==WARN_ONLY_DONT_STOP) + if(_levelOfInfo==ALL_STOP_ASAP || _levelOfInfo==WARN_ONLY_DONT_STOP) throw Exception(getErrRepr()); } @@ -90,7 +109,7 @@ void LinkInfo::pushUselessCFLink(Node *start, Node *end) _uselessLinks.insert(pair(start,end)); } -void LinkInfo::takeDecision() const throw(Exception) +void LinkInfo::takeDecision() const throw(YACS::Exception) { if(!_errors.empty()) throw Exception(getErrRepr());