summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'Swiften/Parser/Tree/ParserElement.h')
-rw-r--r--Swiften/Parser/Tree/ParserElement.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/Swiften/Parser/Tree/ParserElement.h b/Swiften/Parser/Tree/ParserElement.h
index dc9f31c..cffd59a 100644
--- a/Swiften/Parser/Tree/ParserElement.h
+++ b/Swiften/Parser/Tree/ParserElement.h
@@ -7,12 +7,10 @@
#pragma once
+#include <memory>
#include <string>
#include <vector>
-#include <boost/shared_ptr.hpp>
-#include <boost/smart_ptr/make_shared.hpp>
-
#include <Swiften/Base/API.h>
#include <Swiften/Base/boost_bsignals.h>
#include <Swiften/Parser/AttributeMap.h>
@@ -20,7 +18,7 @@
namespace Swift {
class SWIFTEN_API ParserElement {
public:
- typedef boost::shared_ptr<ParserElement> ref;
+ typedef std::shared_ptr<ParserElement> ref;
ParserElement(const std::string& name, const std::string& xmlns, const AttributeMap& attributes);
virtual ~ParserElement();