1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_TESTTOOLS_SOURCE_BRIDGETEST_MULTI_HXX
21 #define INCLUDED_TESTTOOLS_SOURCE_BRIDGETEST_MULTI_HXX
23 #include <sal/config.h>
25 #include <com/sun/star/uno/Reference.hxx>
26 #include <cppuhelper/implbase.hxx>
27 #include <rtl/ustring.hxx>
28 #include <sal/types.h>
29 #include <test/testtools/bridgetest/XMulti.hpp>
33 namespace testtools::bridgetest
{
35 class Multi
: public cppu::WeakImplHelper
< test::testtools::bridgetest::XMulti
>
38 Multi(): m_attribute1(0.0), m_attribute3(0.0) {}
40 virtual double SAL_CALL
getatt1() override
41 { return m_attribute1
; }
43 virtual void SAL_CALL
setatt1(double value
) override
44 { m_attribute1
= value
; }
46 virtual sal_Int32 SAL_CALL
fn11(sal_Int32 arg
) override
49 virtual OUString SAL_CALL
fn12(OUString
const & arg
) override
50 { return "12" + arg
; }
52 virtual sal_Int32 SAL_CALL
fn21(sal_Int32 arg
) override
55 virtual OUString SAL_CALL
fn22(OUString
const & arg
) override
56 { return "22" + arg
; }
58 virtual double SAL_CALL
getatt3() override
59 { return m_attribute3
; }
61 virtual void SAL_CALL
setatt3(double value
) override
62 { m_attribute3
= value
; }
64 virtual sal_Int32 SAL_CALL
fn31(sal_Int32 arg
) override
67 virtual OUString SAL_CALL
fn32(OUString
const & arg
) override
68 { return "32" + arg
; }
70 virtual sal_Int32 SAL_CALL
fn33() override
73 virtual sal_Int32 SAL_CALL
fn41(sal_Int32 arg
) override
76 virtual sal_Int32 SAL_CALL
fn61(sal_Int32 arg
) override
79 virtual OUString SAL_CALL
fn62(OUString
const & arg
) override
80 { return "62" + arg
; }
82 virtual sal_Int32 SAL_CALL
fn71(sal_Int32 arg
) override
85 virtual OUString SAL_CALL
fn72(OUString
const & arg
) override
86 { return "72" + arg
; }
88 virtual sal_Int32 SAL_CALL
fn73() override
96 LO_DLLPUBLIC_TESTTOOLS
97 OUString
testMulti( css::uno::Reference
< test::testtools::bridgetest::XMulti
> const & multi
);
103 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */