Branch libreoffice-5-0-4
[LibreOffice.git] / testtools / source / bridgetest / multi.hxx
blob055d09cb9f3addd2ea1bc7a5738248fdd5e7c832
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/.
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 "com/sun/star/uno/RuntimeException.hpp"
27 #include "cppuhelper/implbase1.hxx"
28 #include "rtl/ustring.hxx"
29 #include "sal/types.h"
30 #include "test/testtools/bridgetest/XMulti.hpp"
32 namespace testtools { namespace bridgetest {
34 class Multi: public cppu::WeakImplHelper1< test::testtools::bridgetest::XMulti >
36 public:
37 Multi(): m_attribute1(0.0), m_attribute3(0.0) {}
39 virtual double SAL_CALL getatt1()
40 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
41 { return m_attribute1; }
43 virtual void SAL_CALL setatt1(double value)
44 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
45 { m_attribute1 = value; }
47 virtual sal_Int32 SAL_CALL fn11(sal_Int32 arg)
48 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
49 { return 11 * arg; }
51 virtual OUString SAL_CALL fn12(OUString const & arg)
52 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
53 { return "12" + arg; }
55 virtual sal_Int32 SAL_CALL fn21(sal_Int32 arg)
56 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
57 { return 21 * arg; }
59 virtual OUString SAL_CALL fn22(OUString const & arg)
60 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
61 { return "22" + arg; }
63 virtual double SAL_CALL getatt3()
64 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
65 { return m_attribute3; }
67 virtual void SAL_CALL setatt3(double value)
68 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
69 { m_attribute3 = value; }
71 virtual sal_Int32 SAL_CALL fn31(sal_Int32 arg)
72 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
73 { return 31 * arg; }
75 virtual OUString SAL_CALL fn32(OUString const & arg)
76 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
77 { return "32" + arg; }
79 virtual sal_Int32 SAL_CALL fn33()
80 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
81 { return 33; }
83 virtual sal_Int32 SAL_CALL fn41(sal_Int32 arg)
84 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
85 { return 41 * arg; }
87 virtual sal_Int32 SAL_CALL fn61(sal_Int32 arg)
88 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
89 { return 61 * arg; }
91 virtual OUString SAL_CALL fn62(OUString const & arg)
92 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
93 { return "62" + arg; }
95 virtual sal_Int32 SAL_CALL fn71(sal_Int32 arg)
96 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
97 { return 71 * arg; }
99 virtual OUString SAL_CALL fn72(OUString const & arg)
100 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
101 { return "72" + arg; }
103 virtual sal_Int32 SAL_CALL fn73()
104 throw (com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE
105 { return 73; }
107 private:
108 double m_attribute1;
109 double m_attribute3;
112 OUString testMulti(
113 com::sun::star::uno::Reference< test::testtools::bridgetest::XMulti >
114 const & multi);
118 #endif
120 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */