X-Git-Url: https://git.teslayout.com/public/public/public/?a=blobdiff_plain;f=include%2Fanna%2Fdiameter%2Fcodec%2FEngine.hpp;h=022bbef3042d4b7e354389ee6276df8c9914de98;hb=5a6cba5fde2b2f538a7515f8293cc0a8d9589dfa;hp=1f106c6988ac6bd57756688a979992d3f259e241;hpb=129500a50678c43ff28fb0054d6197899b8c0b2c;p=anna.git diff --git a/include/anna/diameter/codec/Engine.hpp b/include/anna/diameter/codec/Engine.hpp index 1f106c6..022bbef 100644 --- a/include/anna/diameter/codec/Engine.hpp +++ b/include/anna/diameter/codec/Engine.hpp @@ -47,9 +47,9 @@ public: Constructor @param className Logical name for the class. */ - Engine(const char *className) : EngineImpl(className) {;} + Engine(const char *className, const stack::Dictionary * dictionary) : EngineImpl(className, dictionary) {;} - void releaseAvp(Avp* avp) throw() { + void releaseAvp(Avp* avp) { if(avp == NULL) return; //Avp* aux = static_cast (avp); @@ -57,7 +57,7 @@ public: a_avps.release(avp/*aux*/); } - void releaseMessage(Message* message) throw() { + void releaseMessage(Message* message) { if(message == NULL) return; //Message* aux = static_cast (message); @@ -70,8 +70,8 @@ protected: anna::Recycler a_avps; anna::Recycler a_messages; - anna::diameter::codec::Avp* allocateAvp() throw() { return a_avps.create(); } - anna::diameter::codec::Message* allocateMessage() throw() { return a_messages.create(); } + anna::diameter::codec::Avp* allocateAvp() { return a_avps.create(); } + anna::diameter::codec::Message* allocateMessage() { return a_messages.create(); } friend class Message; friend class Avp;