Salome HOME
Remove c++11 warnings about throw specification.
[modules/yacs.git] / src / engine / OutPort.hxx
index 76541560892f55652c03c91e175795fc27e46ee4..5f75d345005628439a3bed7020f87d7b8308f69e 100644 (file)
@@ -44,8 +44,8 @@ namespace YACS
       virtual std::set<InPort *> edSetInPort() const = 0;
       virtual bool isAlreadyLinkedWith(InPort *withp) const = 0;
       virtual void getAllRepresented(std::set<OutPort *>& represented) const;
-      virtual bool addInPort(InPort *inPort) throw(Exception) = 0;
-      virtual int removeInPort(InPort *inPort, bool forward) throw(Exception) = 0;
+      virtual bool addInPort(InPort *inPort)  = 0;
+      virtual int removeInPort(InPort *inPort, bool forward)  = 0;
       virtual ~OutPort();
       std::vector<DataPort *> calculateHistoryOfLinkWith(InPort *end);
       virtual std::string typeName() {return "YACS__ENGINE__OutPort";}