summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/Form.h')
-rw-r--r--Swiften/Elements/Form.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/Swiften/Elements/Form.h b/Swiften/Elements/Form.h
index 0eb6ef0..5e8f994 100644
--- a/Swiften/Elements/Form.h
+++ b/Swiften/Elements/Form.h
@@ -11,7 +11,7 @@
#include "Swiften/Elements/Payload.h"
#include "Swiften/Elements/FormField.h"
#include "Swiften/Base/String.h"
-#include "Swiften/Base/Shared.h"
+
#include "Swiften/JID/JID.h"
namespace Swift {
@@ -20,8 +20,10 @@ namespace Swift {
* For the relevant Fields, the parsers and serialisers protect the API user against
* the strange multi-value instead of newline thing by transforming them.
*/
- class Form : public Payload, public Shared<Form> {
+ class Form : public Payload {
public:
+ typedef boost::shared_ptr<Form> ref;
+
enum Type { FormType, SubmitType, CancelType, ResultType };
public: