bump product version to 6.3.0.0.beta1
[LibreOffice.git] / include / formula / FormulaOpCodeMapperObj.hxx
blob8804e2488d94c796f859ff7c28e3cd9c6caae3a1
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 { namespace sun { namespace star {
35 namespace sheet { struct FormulaOpCodeMapEntry; }
36 namespace sheet { struct FormulaToken; }
37 namespace uno { class XComponentContext; }
38 namespace uno { class XInterface; }
39 } } }
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;
51 public:
52 static OUString getImplementationName_Static();
53 static css::uno::Sequence< OUString> getSupportedServiceNames_Static();
54 static css::uno::Reference< css::uno::XInterface > create(const css::uno::Reference< css::uno::XComponentContext >& _xContext);
56 protected:
57 FormulaOpCodeMapperObj(::std::unique_ptr<FormulaCompiler> && _pCompiler);
58 virtual ~FormulaOpCodeMapperObj() override;
60 private:
61 // XFormulaOpCodeMapper
62 // Attributes
63 virtual ::sal_Int32 SAL_CALL getOpCodeExternal() override;
64 virtual ::sal_Int32 SAL_CALL getOpCodeUnknown() override;
65 // Methods
66 virtual css::uno::Sequence< css::sheet::FormulaToken > SAL_CALL getMappings(
67 const css::uno::Sequence< OUString >& rNames,
68 sal_Int32 nLanguage ) override;
69 virtual css::uno::Sequence< css::sheet::FormulaOpCodeMapEntry > SAL_CALL getAvailableMappings(
70 sal_Int32 nLanguage, sal_Int32 nGroups ) override;
72 // XServiceInfo
73 virtual OUString SAL_CALL getImplementationName() override;
74 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
75 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() override;
79 } // formula
82 #endif // INCLUDED_FORMULA_FORMULAOPCODEMAPPEROBJ_HXX
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */