Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / include / test / container / xelementaccess.hxx
blob14e7ad15962132199b715602aa3868e9f641350c
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX
11 #define INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX
13 #include <com/sun/star/uno/Type.hxx>
14 #include <com/sun/star/uno/Reference.hxx>
16 namespace apitest {
18 class XElementAccess
20 public:
21 XElementAccess(css::uno::Type& rType): maType(rType) {}
23 void testGetElementType();
24 void testHasElements();
26 virtual css::uno::Reference< css::uno::XInterface > init() = 0;
28 virtual ~XElementAccess() {}
30 private:
31 css::uno::Type maType;
36 #endif // INCLUDED_TEST_CONTAINER_XELEMENTACCESS_HXX
38 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */