summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRahul Gurung <gurungrahul2@gmail.com>2018-09-07 17:15:55 +0530
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2018-09-10 01:53:20 +0200
commit8e12e517473dcdfbfd04dc5192c841aff011f609 (patch)
tree785a8a2e4c0d5873245e83f77e5e53757440588a /include
parent2789bbfd607240f260dfb38b6e9c19c9cf49fca9 (diff)
tdf#45904 Move _XChild Java tests to C++
Change-Id: Idaf883eadb95792bdb333dea487be084b1722194 Reviewed-on: https://gerrit.libreoffice.org/60146 Tested-by: Jenkins Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'include')
-rw-r--r--include/test/container/xchild.hxx34
1 files changed, 34 insertions, 0 deletions
diff --git a/include/test/container/xchild.hxx b/include/test/container/xchild.hxx
new file mode 100644
index 000000000000..2128b40390e3
--- /dev/null
+++ b/include/test/container/xchild.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_TABLE_XCHILD_HXX
+#define INCLUDED_TEST_TABLE_XCHILD_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 XChild
+{
+public:
+ virtual css::uno::Reference<css::uno::XInterface> init() = 0;
+
+ void testGetSetParent();
+
+protected:
+ ~XChild() {}
+};
+}
+
+#endif // INCLUDED_TEST_TABLE_XCHILD_HXX
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab cinoptions=b1,g0,N-s cinkeys+=0=break: */