]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/engine/Test/RuntimeForEngineIntegrationTest.cxx
Salome HOME
Remove c++11 warnings about throw specification.
[modules/yacs.git] / src / engine / Test / RuntimeForEngineIntegrationTest.cxx
index 159e56f46beec915cb6c1c89026682ef5a73b03c..a9ae6e2b442c8aa166dd9beca6e081595c05bae6 100644 (file)
@@ -45,7 +45,7 @@ std::vector< std::pair<std::string,int> > RuntimeForEngineIntegrationTest::getCa
 //  throw Exception("RuntimeForEngineTest::getCatalogOfComputeNodes : not implemented !");
 }
 
-ElementaryNode* RuntimeForEngineIntegrationTest::createNode(const std::string& implementation, const std::string& name) throw (YACS::Exception)
+ElementaryNode* RuntimeForEngineIntegrationTest::createNode(const std::string& implementation, const std::string& name)
 {
   if (implementation == ToyNode::MY_IMPL_NAME)
     return new ToyNode(name);
@@ -85,12 +85,12 @@ OutputPort* RuntimeForEngineIntegrationTest::createOutputPort(const std::string&
   throw Exception(msg.str());
 }
 
-InputPort* RuntimeForEngineIntegrationTest::adapt(InputPort* source, const std::string& impl,TypeCode * type,bool init) throw (ConversionException)
+InputPort* RuntimeForEngineIntegrationTest::adapt(InputPort* source, const std::string& impl,TypeCode * type,bool init)
 {
   return new ProxyPort(source);
 }
 
-InputPort* RuntimeForEngineIntegrationTest::adapt(InPropertyPort* source, const std::string& impl, TypeCode * type, bool init) throw (ConversionException)
+InputPort* RuntimeForEngineIntegrationTest::adapt(InPropertyPort* source, const std::string& impl, TypeCode * type, bool init)
 {
   return adapt((InputPort *)source, impl, type, init);
 }