tdf#131098 docx export: write fill property of graphic
[LibreOffice.git] / helpcompiler / source / LuceneHelper.hxx
blob6e8208b1b20e502f342312eb06679763510ed14b
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 */
9 #pragma once
11 #if defined(__GNUC__)
12 #pragma GCC visibility push(default)
13 #endif
15 #include <CLucene.h>
17 #if defined(__GNUC__)
18 #pragma GCC visibility pop
19 #endif
21 #include <rtl/ustring.hxx>
22 #include <vector>
24 std::vector<TCHAR> OUStringToTCHARVec(OUString const& rStr);
25 OUString TCHARArrayToOUString(TCHAR const* str);
27 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */