diff options
author | Jens Carl <j.carl43@gmx.de> | 2017-06-28 08:09:33 +0000 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-07-02 04:49:14 +0200 |
commit | c08dd17baf7ea63f10d5311e90c5c6a4c48aac20 (patch) | |
tree | cffa7913175d864719d8859e525a0d7504825c57 /include | |
parent | 01985fd8fccf46749b74ee733391ce8b6ec1f1f8 (diff) |
tdf#45904 Move Java XCellAddressable test to C++
Change-Id: Ib68c7dd8087f19bd969cf5273c3a6e8664c6bb62
Reviewed-on: https://gerrit.libreoffice.org/39348
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/test/sheet/xcelladdressable.hxx | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/test/sheet/xcelladdressable.hxx b/include/test/sheet/xcelladdressable.hxx new file mode 100644 index 000000000000..cf2da7eadc1f --- /dev/null +++ b/include/test/sheet/xcelladdressable.hxx @@ -0,0 +1,35 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#ifndef INCLUDE_TEST_SHEET_XCELLADDRESSABLE_HXX +#define INCLUDE_TEST_SHEET_XCELLADDRESSABLE_HXX + +#include <com/sun/star/uno/XInterface.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <test/testdllapi.hxx> + +using namespace css; +using namespace css::uno; + +namespace apitest { + +class OOO_DLLPUBLIC_TEST XCellAddressable +{ +public: + virtual uno::Reference< uno::XInterface > init() = 0; + virtual ~XCellAddressable(){} + + void testGetCellAddress(); +}; + +} + +#endif // INCLUDE_TEST_SHEET_XCELLADDRESSABLE_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |