summaryrefslogtreecommitdiff
path: root/writerfilter/source/dmapper/TagLogger.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'writerfilter/source/dmapper/TagLogger.hxx')
-rw-r--r--writerfilter/source/dmapper/TagLogger.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/writerfilter/source/dmapper/TagLogger.hxx b/writerfilter/source/dmapper/TagLogger.hxx
index 228c690d00e2..9282f5b16c9e 100644
--- a/writerfilter/source/dmapper/TagLogger.hxx
+++ b/writerfilter/source/dmapper/TagLogger.hxx
@@ -24,7 +24,7 @@
#include <com/sun/star/beans/XPropertySet.hpp>
#include <dmapper/resourcemodel.hxx>
#include <string>
-#include <boost/shared_ptr.hpp>
+#include <memory>
#include <libxml/xmlwriter.h>
namespace writerfilter
@@ -33,7 +33,7 @@ namespace writerfilter
class IdToString
{
public:
- typedef boost::shared_ptr<IdToString> Pointer_t;
+ typedef std::shared_ptr<IdToString> Pointer_t;
virtual std::string toString(const Id & id) const = 0;
protected:
@@ -44,7 +44,7 @@ namespace writerfilter
class TagLogger
{
public:
- typedef boost::shared_ptr<TagLogger> Pointer_t;
+ typedef std::shared_ptr<TagLogger> Pointer_t;
private:
xmlTextWriterPtr pWriter;