diff options
author | Remko Tronçon <git@el-tramo.be> | 2010-10-25 18:44:36 (GMT) |
---|---|---|
committer | Remko Tronçon <git@el-tramo.be> | 2010-10-25 18:45:36 (GMT) |
commit | f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3 (patch) | |
tree | 484a1755ccb69421de3ed9b7b9c731870f2de56a /Swiften/Elements/AuthFailure.h | |
parent | bd80c3b9054d91b3cbc309400f4db195c708115d (diff) | |
download | swift-contrib-f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3.zip swift-contrib-f77eeb87104a4ea0fd8e43399da14dc5f1cd97c3.tar.bz2 |
Remove the use of Shared<>.
Diffstat (limited to 'Swiften/Elements/AuthFailure.h')
-rw-r--r-- | Swiften/Elements/AuthFailure.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Swiften/Elements/AuthFailure.h b/Swiften/Elements/AuthFailure.h index 348a19b..7ffc762 100644 --- a/Swiften/Elements/AuthFailure.h +++ b/Swiften/Elements/AuthFailure.h @@ -6,12 +6,15 @@ #pragma once +#include <boost/shared_ptr.hpp> + #include "Swiften/Elements/Element.h" -#include "Swiften/Base/Shared.h" namespace Swift { - class AuthFailure : public Element, public Shared<AuthFailure> { + class AuthFailure : public Element { public: + typedef boost::shared_ptr<AuthFailure> ref; + AuthFailure() {} }; } |