summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Elements/SecurityLabelsCatalog.h')
-rw-r--r--Swiften/Elements/SecurityLabelsCatalog.h11
1 files changed, 5 insertions, 6 deletions
diff --git a/Swiften/Elements/SecurityLabelsCatalog.h b/Swiften/Elements/SecurityLabelsCatalog.h
index 8e6db64..ba4d294 100644
--- a/Swiften/Elements/SecurityLabelsCatalog.h
+++ b/Swiften/Elements/SecurityLabelsCatalog.h
@@ -6,11 +6,10 @@
#pragma once
+#include <memory>
#include <string>
#include <vector>
-#include <boost/shared_ptr.hpp>
-
#include <Swiften/Base/API.h>
#include <Swiften/Elements/Payload.h>
#include <Swiften/Elements/SecurityLabel.h>
@@ -19,15 +18,15 @@
namespace Swift {
class SWIFTEN_API SecurityLabelsCatalog : public Payload {
public:
- typedef boost::shared_ptr<SecurityLabelsCatalog> ref;
+ typedef std::shared_ptr<SecurityLabelsCatalog> ref;
class Item {
public:
Item() : default_(false) {}
- boost::shared_ptr<SecurityLabel> getLabel() const {
+ std::shared_ptr<SecurityLabel> getLabel() const {
return label_;
}
- void setLabel(boost::shared_ptr<SecurityLabel> label) {
+ void setLabel(std::shared_ptr<SecurityLabel> label) {
label_ = label;
}
@@ -43,7 +42,7 @@ namespace Swift {
default_ = isDefault;
}
private:
- boost::shared_ptr<SecurityLabel> label_;
+ std::shared_ptr<SecurityLabel> label_;
std::string selector_;
bool default_;
};