nss: upgrade to release 3.73
[LibreOffice.git] / include / formula / FormulaOpCodeMapperObj.hxx
blobc7b7a400f5c9243027480d33deaf020ae24423de
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_FORMULA_FORMULAOPCODEMAPPEROBJ_HXX
21 #define INCLUDED_FORMULA_FORMULAOPCODEMAPPEROBJ_HXX
23 #include <memory>
25 #include <com/sun/star/lang/XServiceInfo.hpp>
26 #include <com/sun/star/uno/Reference.hxx>
27 #include <com/sun/star/uno/Sequence.hxx>
28 #include <com/sun/star/sheet/XFormulaOpCodeMapper.hpp>
29 #include <cppuhelper/implbase.hxx>
30 #include <formula/formuladllapi.h>
31 #include <rtl/ustring.hxx>
32 #include <sal/types.h>
34 namespace com::sun::star {
35 namespace sheet { struct FormulaOpCodeMapEntry; }
36 namespace sheet { struct FormulaToken; }
37 namespace uno { class XComponentContext; }
38 namespace uno { class XInterface; }
41 namespace formula
44 class FormulaCompiler;
46 class FORMULA_DLLPUBLIC FormulaOpCodeMapperObj : public cppu::WeakImplHelper<
47 css::sheet::XFormulaOpCodeMapper,
48 css::lang::XServiceInfo >
50 ::std::unique_ptr<FormulaCompiler> m_pCompiler;
52 public:
53 FormulaOpCodeMapperObj(::std::unique_ptr<FormulaCompiler> && _pCompiler);
54 virtual ~FormulaOpCodeMapperObj() override;
56 private:
57 // XFormulaOpCodeMapper
58 // Attributes
59 virtual ::sal_Int32 SAL_CALL getOpCodeExternal() override;
60 virtual ::sal_Int32 SAL_CALL getOpCodeUnknown() override;
61 // Methods
62 virtual css::uno::Sequence< css::sheet::FormulaToken > SAL_CALL getMappings(
63 const css::uno::Sequence< OUString >& rNames,
64 sal_Int32 nLanguage ) override;
65 virtual css::uno::Sequence< css::sheet::FormulaOpCodeMapEntry > SAL_CALL getAvailableMappings(
66 sal_Int32 nLanguage, sal_Int32 nGroups ) override;
68 // XServiceInfo
69 virtual OUString SAL_CALL getImplementationName() override;
70 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
71 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
75 } // formula
78 #endif // INCLUDED_FORMULA_FORMULAOPCODEMAPPEROBJ_HXX
80 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */