summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/PubSubEventConfiguration.h')
-rw-r--r--Swiften/Elements/PubSubEventConfiguration.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/Swiften/Elements/PubSubEventConfiguration.h b/Swiften/Elements/PubSubEventConfiguration.h
index 14639ab..6c5305d 100644
--- a/Swiften/Elements/PubSubEventConfiguration.h
+++ b/Swiften/Elements/PubSubEventConfiguration.h
@@ -6,10 +6,9 @@
#pragma once
+#include <memory>
#include <string>
-#include <boost/shared_ptr.hpp>
-
#include <Swiften/Base/API.h>
#include <Swiften/Base/Override.h>
#include <Swiften/Elements/Form.h>
@@ -32,17 +31,17 @@ namespace Swift {
this->node = value ;
}
- boost::shared_ptr<Form> getData() const {
+ std::shared_ptr<Form> getData() const {
return data;
}
- void setData(boost::shared_ptr<Form> value) {
+ void setData(std::shared_ptr<Form> value) {
this->data = value ;
}
private:
std::string node;
- boost::shared_ptr<Form> data;
+ std::shared_ptr<Form> data;
};
}