Teach symstore more duplicated DLLs
[LibreOffice.git] / xmloff / source / transform / Oasis2OOo.hxx
blob7a5d9c0ac632d7359fa673ccf5fb8f450b1ccced
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_XMLOFF_SOURCE_TRANSFORM_OASIS2OOO_HXX
21 #define INCLUDED_XMLOFF_SOURCE_TRANSFORM_OASIS2OOO_HXX
23 #include "ActionMapTypesOASIS.hxx"
24 #include "TransformerBase.hxx"
26 class XMLTransformerOASISEventMap_Impl;
28 class Oasis2OOoTransformer : public XMLTransformerBase
30 std::unique_ptr<XMLTransformerActions> m_aActions[MAX_OASIS_ACTIONS];
31 XMLTransformerOASISEventMap_Impl *m_pEventMap;
32 XMLTransformerOASISEventMap_Impl *m_pFormEventMap;
34 protected:
36 virtual XMLTransformerContext *CreateUserDefinedContext(
37 const TransformerAction_Impl& rAction,
38 const OUString& rQName,
39 bool bPersistent=false ) override;
41 virtual XMLTransformerActions *GetUserDefinedActions( sal_uInt16 n ) override;
43 public:
44 Oasis2OOoTransformer () throw();
45 virtual ~Oasis2OOoTransformer() throw() override;
47 // XServiceInfo
48 virtual OUString SAL_CALL getImplementationName( ) override;
49 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) override;
50 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) override;
52 // XUnoTunnel
53 static const css::uno::Sequence<sal_Int8>& getUnoTunnelId() throw();
54 virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) override;
56 virtual OUString GetEventName( const OUString& rName,
57 bool bForm = false ) override;
60 #endif // INCLUDED_XMLOFF_SOURCE_TRANSFORM_OASIS2OOO_HXX
62 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */