diff options
author | Caolán McNamara <caolanm@redhat.com> | 2015-09-18 09:25:18 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2015-09-18 13:46:27 +0000 |
commit | 335704695d15f53518a614060e60821c8e1cf279 (patch) | |
tree | f2dada4f16f9daf0163c70e6cb519acb71f70a3c /sdext/source/pdfimport/inc | |
parent | 5db6ec77d851b2aa9f22a735d1d2a9a5465759cc (diff) |
boost->std
Change-Id: I21ca18c23277423d106d990fd537d58108bd1084
Reviewed-on: https://gerrit.libreoffice.org/18679
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'sdext/source/pdfimport/inc')
-rw-r--r-- | sdext/source/pdfimport/inc/contentsink.hxx | 4 | ||||
-rw-r--r-- | sdext/source/pdfimport/inc/treevisitorfactory.hxx | 10 | ||||
-rw-r--r-- | sdext/source/pdfimport/inc/xmlemitter.hxx | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/sdext/source/pdfimport/inc/contentsink.hxx b/sdext/source/pdfimport/inc/contentsink.hxx index 17e58adae5a9..e3bcb216d939 100644 --- a/sdext/source/pdfimport/inc/contentsink.hxx +++ b/sdext/source/pdfimport/inc/contentsink.hxx @@ -23,7 +23,7 @@ #include <com/sun/star/uno/Reference.hxx> #include <com/sun/star/uno/Sequence.hxx> #include <com/sun/star/rendering/ARGBColor.hpp> -#include <boost/shared_ptr.hpp> +#include <memory> namespace com { namespace sun { namespace star { namespace rendering @@ -173,7 +173,7 @@ namespace pdfi css::beans::PropertyValue>& xMask) = 0; }; - typedef boost::shared_ptr<ContentSink> ContentSinkSharedPtr; + typedef std::shared_ptr<ContentSink> ContentSinkSharedPtr; } #endif // INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_CONTENTSINK_HXX 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(); diff --git a/sdext/source/pdfimport/inc/xmlemitter.hxx b/sdext/source/pdfimport/inc/xmlemitter.hxx index 72f4d28bbf03..9ffacda7f1aa 100644 --- a/sdext/source/pdfimport/inc/xmlemitter.hxx +++ b/sdext/source/pdfimport/inc/xmlemitter.hxx @@ -21,7 +21,7 @@ #define INCLUDED_SDEXT_SOURCE_PDFIMPORT_INC_XMLEMITTER_HXX #include "pdfihelper.hxx" -#include <boost/shared_ptr.hpp> +#include <memory> namespace pdfi { @@ -45,7 +45,7 @@ namespace pdfi virtual void endTag( const char* pTag ) = 0; }; - typedef boost::shared_ptr<XmlEmitter> XmlEmitterSharedPtr; + typedef std::shared_ptr<XmlEmitter> XmlEmitterSharedPtr; } #endif |