fdo#74697 Add Bluez 5 support for impress remote.
[LibreOffice.git] / include / test / container / xindexaccess.hxx
blob95401c1cddff696a1054844479c8cf8a1bb0e646
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 #include <com/sun/star/uno/Reference.hxx>
12 namespace apitest {
14 class XIndexAccess
16 public:
17 XIndexAccess(sal_Int32 nItems);
19 virtual css::uno::Reference< css::uno::XInterface > init() = 0;
20 void testGetCount();
21 void testGetByIndex();
22 // will throw an exception and should fail if not
23 void testGetByIndexException();
25 protected:
26 ~XIndexAccess() {}
28 private:
29 sal_Int32 mnItems;
34 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */