diff options
author | Jens Carl <j.carl43@gmx.de> | 2017-08-25 06:02:55 +0000 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2017-08-27 09:52:14 +0200 |
commit | 829b73b1e9cb4ed11feeff428220a39f3b666214 (patch) | |
tree | f12eedcd7d3be1bb28b4d51569f97d90554512a8 /include/test | |
parent | c298f79083cb7e09dd389a353b7bb25e6f5f00b2 (diff) |
tdf#45904 Move _DataPilotItem Java tests to C++
Change-Id: Ia20630f4cc187bd6f1a47bb6d747fda3c8b39e86
Reviewed-on: https://gerrit.libreoffice.org/41551
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'include/test')
-rw-r--r-- | include/test/sheet/datapilotitem.hxx | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/include/test/sheet/datapilotitem.hxx b/include/test/sheet/datapilotitem.hxx new file mode 100644 index 000000000000..1c05078352a6 --- /dev/null +++ b/include/test/sheet/datapilotitem.hxx @@ -0,0 +1,34 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */ +/* + * 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 INCLUDED_TEST_SHEET_DATAPILOTITEM_HXX +#define INCLUDED_TEST_SHEET_DATAPILOTITEM_HXX + +#include <com/sun/star/uno/XInterface.hpp> +#include <com/sun/star/uno/Reference.hxx> +#include <test/testdllapi.hxx> + +namespace apitest { + +class OOO_DLLPUBLIC_TEST DataPilotItem +{ +public: + virtual css::uno::Reference< css::uno::XInterface > init() = 0; + + void testProperties(); + +protected: + ~DataPilotItem() {} +}; + +} + +#endif // INCLUDED_TEST_SHEET_DATAPILOTITEM_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |