Version 5.4.3.2, tag libreoffice-5.4.3.2
[LibreOffice.git] / include / avmedia / modeltools.hxx
blob8d68e2bbb1ff19cef5c56a86ec2e7a8d0107f105
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef INCLUDED_AVMEDIA_MODELTOOLS_HXX
11 #define INCLUDED_AVMEDIA_MODELTOOLS_HXX
13 #include <rtl/ustring.hxx>
14 #include <com/sun/star/frame/XModel.hpp>
15 #include <avmedia/avmediadllapi.h>
17 #include <config_features.h>
19 namespace avmedia {
21 #if HAVE_FEATURE_COLLADA
22 bool KmzDae2Gltf(const OUString& rSourceURL, OUString& o_rOutput);
23 #endif
25 bool AVMEDIA_DLLPUBLIC Embed3DModel(
26 const css::uno::Reference< css::frame::XModel>& xModel,
27 const OUString& rSourceURL, OUString& o_rEmbeddedURL);
29 bool AVMEDIA_DLLPUBLIC IsModel(const OUString& rMimeType);
31 } // namespace avmedia
33 #endif // INCLUDED_AVMEDIA_MODELTOOLS_HXX
35 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */