lok: initialize the load-language
[LibreOffice.git] / include / test / sheet / xsheetcellrangecontainer.hxx
blob734c2c4e2fc14626829d53396b0ed9bd3957f47a
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_TEST_SHEET_XSHEETCELLRANGECONTAINER_HXX
11 #define INCLUDED_TEST_SHEET_XSHEETCELLRANGECONTAINER_HXX
13 #include <com/sun/star/table/CellRangeAddress.hpp>
15 #include <com/sun/star/uno/XInterface.hpp>
16 #include <com/sun/star/uno/Reference.hxx>
17 #include <com/sun/star/uno/Sequence.hxx>
19 #include <test/testdllapi.hxx>
21 namespace apitest
23 class OOO_DLLPUBLIC_TEST XSheetCellRangeContainer
25 public:
26 virtual css::uno::Reference<css::uno::XInterface> init() = 0;
28 void testAddRemoveRangeAddress();
29 void testAddRemoveRangeAddresses();
31 protected:
32 ~XSheetCellRangeContainer() {}
33 static css::uno::Sequence<com::sun::star::table::CellRangeAddress> createCellRangeAddresses();
37 #endif // INCLUDED_TEST_SHEET_XSHEETCELLRANGECONTAINER_HXX
39 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */