Remove dynamic exceptions
[anna.git] / include / anna / diameter / codec / MessagesDeque.hpp
index 8a52d30..1c90dfe 100644 (file)
@@ -38,15 +38,15 @@ typedef std::map < int /* message code */, codec_messages_deque* >::const_iterat
     MessagesDeque() { a_rotate = false; }
     ~MessagesDeque() { clear(); }
 
-    bool rotate() const throw() { return a_rotate; }
-    void rotate(bool r) throw() { a_rotate = r; }
-
-    void clear () throw();
-    void dump (const char *filenamePrefix = "programmed_message") throw();
-    void addMessage(int code, anna::diameter::codec::Message *message) throw();
-    anna::diameter::codec::Message* getMessage(int code) const throw();
-    void nextMessage(int code) throw();
-    std::string asString(const char *queueName) const throw();
+    bool rotate() const { return a_rotate; }
+    void rotate(bool r) { a_rotate = r; }
+
+    void clear () ;
+    void dump (const char *filenamePrefix = "programmed_message") ;
+    void addMessage(int code, anna::diameter::codec::Message *message) ;
+    anna::diameter::codec::Message* getMessage(int code) const ;
+    void nextMessage(int code) ;
+    std::string asString(const char *queueName) const ;
 };
 
 }