diff options
author | anfanite396 <dipamt1729@gmail.com> | 2023-08-12 01:04:27 +0530 |
---|---|---|
committer | Tomaž Vajngerl <quikee@gmail.com> | 2023-08-26 16:21:44 +0200 |
commit | 0ab3f09011e4c4c1b85dda72f81f252899162ab5 (patch) | |
tree | 698db0edb1fe92b9f7914aee61e29e122e03a878 /include | |
parent | 3ebd1371cbcfc03ca525146c680f076066ceb361 (diff) |
tdf#45904: Move _XFootnote Java tests to C++
Change-Id: Ibdc28ab8818860b9c94abeac33713607dbcf8df4
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/155635
Tested-by: Jenkins
Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/test/text/xfootnote.hxx | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/include/test/text/xfootnote.hxx b/include/test/text/xfootnote.hxx new file mode 100644 index 000000000000..eb6f8bd0bd5e --- /dev/null +++ b/include/test/text/xfootnote.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/. + */ + +#pragma once + +#include <rtl/ustring.hxx> +#include <test/testdllapi.hxx> + +#include <com/sun/star/uno/XInterface.hpp> + +#include <com/sun/star/uno/Any.hxx> +#include <com/sun/star/uno/Reference.hxx> +#include <utility> + +namespace apitest +{ +class OOO_DLLPUBLIC_TEST XFootnote +{ +public: + virtual css::uno::Reference<css::uno::XInterface> init() = 0; + + void testGetSetLabel(); + +protected: + ~XFootnote() {} +}; + +} // namespace apitest + +/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */ |