update emoji autocorrect entries from po-files
[LibreOffice.git] / include / avmedia / modeltools.hxx
blob590e8d0f1525dacd65163b9aac1202efd275638b
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 ::com::sun::star::uno::Reference< ::com::sun::star::frame::XModel>& xModel,
27 const OUString& rSourceURL, OUString& o_rEmbeddedURL);
29 bool AVMEDIA_DLLPUBLIC IsModel(const OUString& rMimeType);
31 } // namespace avemdia
33 #endif // INCLUDED_AVMEDIA_MODELTOOLS_HXX
35 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */