diff options
author | Jens Carl <j.carl43@gmx.de> | 2018-11-13 15:24:11 -0800 |
---|---|---|
committer | Jens Carl <j.carl43@gmx.de> | 2018-11-14 03:50:27 +0100 |
commit | 13dd6c26658727ec72b6fa2f7129a0e283ff1ec6 (patch) | |
tree | 37a16e19a2e70a47849e89d5d765d577422b37ac /include/test/container/xenumeration.hxx | |
parent | 85dba18a3d3644a4ac49bd32ea106a4d69159fb4 (diff) |
tdf#45904 Move _XEnumeration for ScCellsEnumeration to C++
Change-Id: Ic7c8e6a9fe777d16a98da89e00f1f52128ac1b5d
Reviewed-on: https://gerrit.libreoffice.org/63351
Tested-by: Jenkins
Reviewed-by: Jens Carl <j.carl43@gmx.de>
Diffstat (limited to 'include/test/container/xenumeration.hxx')
-rw-r--r-- | include/test/container/xenumeration.hxx | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/test/container/xenumeration.hxx b/include/test/container/xenumeration.hxx new file mode 100644 index 000000000000..889519229e63 --- /dev/null +++ b/include/test/container/xenumeration.hxx @@ -0,0 +1,36 @@ +/* -*- 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_CONTAINER_XENUMERAION_HXX +#define INCLUDED_TEST_CONTAINER_XENUMERAION_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 XEnumeration +{ +public: + virtual css::uno::Reference<css::uno::XInterface> init() = 0; + + void testHasMoreElements(); + void testNextElement(); + +protected: + ~XEnumeration() {} +}; +} // namespace apitest + +#endif // INCLUDED_TEST_CONTAINER_XENUMERAION_HXX + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |