diff options
Diffstat (limited to 'Swiften/Elements/Command.h')
-rw-r--r-- | Swiften/Elements/Command.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/Swiften/Elements/Command.h b/Swiften/Elements/Command.h index 91ca915..73d359f 100644 --- a/Swiften/Elements/Command.h +++ b/Swiften/Elements/Command.h @@ -6,8 +6,9 @@ #pragma once +#include <boost/shared_ptr.hpp> + #include "Swiften/Base/String.h" -#include "Swiften/Base/Shared.h" #include "Swiften/Elements/Payload.h" #include "Swiften/Elements/Form.h" @@ -15,8 +16,10 @@ namespace Swift { /** * Ad-Hoc Command (XEP-0050). */ - class Command : public Payload, public Shared<Command> { + class Command : public Payload { public: + typedef boost::shared_ptr<Command> ref; + enum Status {Executing, Completed, Canceled, NoStatus}; enum Action {Cancel, Execute, Complete, Prev, Next, NoAction}; |