diff options
Diffstat (limited to 'Swiften/Elements/AuthFailure.h')
-rw-r--r-- | Swiften/Elements/AuthFailure.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/Swiften/Elements/AuthFailure.h b/Swiften/Elements/AuthFailure.h index ff1468e..348a19b 100644 --- a/Swiften/Elements/AuthFailure.h +++ b/Swiften/Elements/AuthFailure.h @@ -4,16 +4,14 @@ * See Documentation/Licenses/GPLv3.txt for more information. */ -#ifndef SWIFTEN_AuthFailure_H -#define SWIFTEN_AuthFailure_H +#pragma once #include "Swiften/Elements/Element.h" +#include "Swiften/Base/Shared.h" namespace Swift { - class AuthFailure : public Element { + class AuthFailure : public Element, public Shared<AuthFailure> { public: AuthFailure() {} }; } - -#endif |