summaryrefslogtreecommitdiff
path: root/sdext/source/pdfimport/inc/treevisitorfactory.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sdext/source/pdfimport/inc/treevisitorfactory.hxx')
-rw-r--r--sdext/source/pdfimport/inc/treevisitorfactory.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/sdext/source/pdfimport/inc/treevisitorfactory.hxx b/sdext/source/pdfimport/inc/treevisitorfactory.hxx
index 553bb07c5f09..cd7fcd212f2a 100644
--- a/sdext/source/pdfimport/inc/treevisitorfactory.hxx
+++ b/sdext/source/pdfimport/inc/treevisitorfactory.hxx
@@ -21,7 +21,7 @@
#define INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_TREEVISITORFACTORY_HXX
#include "pdfihelper.hxx"
-#include <boost/shared_ptr.hpp>
+#include <memory>
namespace pdfi
{
@@ -40,15 +40,15 @@ namespace pdfi
virtual ~TreeVisitorFactory() {}
/// Create visitor that combines tree nodes
- virtual boost::shared_ptr<ElementTreeVisitor> createOptimizingVisitor(PDFIProcessor&) const = 0;
+ virtual std::shared_ptr<ElementTreeVisitor> createOptimizingVisitor(PDFIProcessor&) const = 0;
/// Create visitor that prepares style info
- virtual boost::shared_ptr<ElementTreeVisitor> createStyleCollectingVisitor(
+ virtual std::shared_ptr<ElementTreeVisitor> createStyleCollectingVisitor(
StyleContainer&, PDFIProcessor&) const = 0;
/// Create visitor that emits tree to an output target
- virtual boost::shared_ptr<ElementTreeVisitor> createEmittingVisitor(EmitContext&) const = 0;
+ virtual std::shared_ptr<ElementTreeVisitor> createEmittingVisitor(EmitContext&) const = 0;
};
- typedef boost::shared_ptr<TreeVisitorFactory> TreeVisitorFactorySharedPtr;
+ typedef std::shared_ptr<TreeVisitorFactory> TreeVisitorFactorySharedPtr;
TreeVisitorFactorySharedPtr createWriterTreeVisitorFactory();
TreeVisitorFactorySharedPtr createImpressTreeVisitorFactory();