Remove dynamic exceptions
[anna.git] / include / anna / timex / Clock.hpp
index fbff5dd..5b9df65 100644 (file)
@@ -35,7 +35,7 @@ public:
      \return Una cadena con la informacion referenta a este reloj.
   */
   std::string asString() const
-  throw() {
+  {
     std::string msg("Clock { ");
     msg += TimeEvent::asString();
     msg += " | Name: ";
@@ -50,12 +50,12 @@ public:
      \return \em true si el reloj desea continuar recibiendo los pulsos periodicamente o
      \em false en otro caso.
   */
-  virtual bool tick() throw(RuntimeException) = 0;
+  virtual bool tick() noexcept(false) = 0;
 
 private:
   std::string a_name;
 
-  void expire(Engine* timeController) throw(RuntimeException);
+  void expire(Engine* timeController) noexcept(false);
 };
 
 }