bump product version to 5.0.4.1
[LibreOffice.git] / xmloff / source / transform / Oasis2OOo.hxx
blob4bf6e29a0a1f424f2c846f753054071414cdca4f
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 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 ) SAL_OVERRIDE;
41 virtual XMLTransformerActions *GetUserDefinedActions( sal_uInt16 n ) SAL_OVERRIDE;
43 public:
44 Oasis2OOoTransformer () throw();
45 virtual ~Oasis2OOoTransformer() throw();
47 static const ::com::sun::star::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw();
49 // XServiceInfo
50 virtual OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
51 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
52 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
54 // XUnoTunnel
55 virtual sal_Int64 SAL_CALL getSomething( const ::com::sun::star::uno::Sequence< sal_Int8 >& aIdentifier ) throw(::com::sun::star::uno::RuntimeException, std::exception) SAL_OVERRIDE;
57 virtual OUString GetEventName( const OUString& rName,
58 bool bForm ) SAL_OVERRIDE;
61 #endif // INCLUDED_XMLOFF_SOURCE_TRANSFORM_OASIS2OOO_HXX
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */