Remove dynamic exceptions
[anna.git] / include / anna / timex / internal / TickConsumer.hpp
index f74fbd9..5e4920a 100644 (file)
@@ -30,18 +30,18 @@ public:
     a_pipe [0] = a_pipe [1] = -1;
   }
 
-  int getfdWrite() const throw() { return a_pipe [1]; }
+  int getfdWrite() const { return a_pipe [1]; }
 
-  std::string asString() const throw();
+  std::string asString() const ;
 
 private:
   Engine& a_timeController;
   int a_pipe [2];
 
-  void initialize() throw(RuntimeException);
-  void apply() throw(RuntimeException);
-  void finalize() throw();
-  void clone() throw(RuntimeException);
+  void initialize() noexcept(false);
+  void apply() noexcept(false);
+  void finalize() ;
+  void clone() noexcept(false);
 };
 
 }