summaryrefslogtreecommitdiff
path: root/avmedia/source/framework/modeltools.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'avmedia/source/framework/modeltools.cxx')
-rw-r--r--avmedia/source/framework/modeltools.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/avmedia/source/framework/modeltools.cxx b/avmedia/source/framework/modeltools.cxx
index 8c4251e32041..872e00aa1b14 100644
--- a/avmedia/source/framework/modeltools.cxx
+++ b/avmedia/source/framework/modeltools.cxx
@@ -28,6 +28,7 @@
#include <boost/property_tree/json_parser.hpp>
#include <boost/foreach.hpp>
#include <boost/optional.hpp>
+#include <boost/shared_ptr.hpp>
#include <config_features.h>
@@ -85,7 +86,7 @@ bool KmzDae2Gltf(const OUString& rSourceURL, OUString& o_rOutput)
// remove .tmp extension
sOutput = sOutput.copy(0, sOutput.getLength()-4);
- std::shared_ptr <GLTF::GLTFAsset> asset(new GLTF::GLTFAsset());
+ boost::shared_ptr <GLTF::GLTFAsset> asset(new GLTF::GLTFAsset());
asset->setBundleOutputPath(OUStringToOString( sOutput, RTL_TEXTENCODING_UTF8 ).getStr());
// If *.dae file is not in the local file system, then copy it to a temp folder for the conversion