build fix: no comphelper/profilezone.hxx in this branch
[LibreOffice.git] / include / xmloff / unoatrcn.hxx
blobdc9e34301637bc29b6d4a3c1633757ac6562574e
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_UNOATRCN_HXX
21 #define INCLUDED_XMLOFF_UNOATRCN_HXX
23 #include <sal/config.h>
25 #include <memory>
27 #include <xmloff/dllapi.h>
28 #include <sal/types.h>
29 #include <com/sun/star/lang/XMultiServiceFactory.hpp>
30 #include <com/sun/star/container/XNameContainer.hpp>
31 #include <com/sun/star/lang/XServiceInfo.hpp>
32 #include <com/sun/star/lang/XUnoTunnel.hpp>
34 #include <xmloff/xmlcnimp.hxx>
36 #include <cppuhelper/implbase3.hxx>
38 extern css::uno::Reference< css::uno::XInterface > SvUnoAttributeContainer_CreateInstance();
40 class XMLOFF_DLLPUBLIC SvUnoAttributeContainer:
41 public ::cppu::WeakAggImplHelper3<
42 css::lang::XServiceInfo,
43 css::lang::XUnoTunnel,
44 css::container::XNameContainer >
46 private:
47 std::unique_ptr<SvXMLAttrContainerData> mpContainer;
49 SAL_DLLPRIVATE sal_uInt16 getIndexByName(const OUString& aName )
50 const;
52 public:
53 SvUnoAttributeContainer( std::unique_ptr<SvXMLAttrContainerData> pContainer = nullptr );
54 SvXMLAttrContainerData* GetContainerImpl() const { return mpContainer.get(); }
56 static const css::uno::Sequence< sal_Int8 > & getUnoTunnelId() throw();
57 virtual sal_Int64 SAL_CALL getSomething( const css::uno::Sequence< sal_Int8 >& aIdentifier ) throw(css::uno::RuntimeException, std::exception) override;
59 // css::container::XElementAccess
60 virtual css::uno::Type SAL_CALL getElementType() throw( css::uno::RuntimeException, std::exception ) override;
61 virtual sal_Bool SAL_CALL hasElements() throw( css::uno::RuntimeException, std::exception ) override;
63 // css::container::XNameAccess
64 virtual css::uno::Any SAL_CALL getByName(const OUString& aName) throw( css::container::NoSuchElementException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception ) override;
65 virtual css::uno::Sequence< OUString > SAL_CALL getElementNames() throw( css::uno::RuntimeException, std::exception ) override;
66 virtual sal_Bool SAL_CALL hasByName(const OUString& aName) throw( css::uno::RuntimeException, std::exception ) override;
68 // css::container::XNameReplace
69 virtual void SAL_CALL replaceByName(const OUString& aName, const css::uno::Any& aElement) throw( css::lang::IllegalArgumentException, css::container::NoSuchElementException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception ) override;
71 // css::container::XNameContainer
72 virtual void SAL_CALL insertByName(const OUString& aName, const css::uno::Any& aElement) throw( css::lang::IllegalArgumentException, css::container::ElementExistException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception ) override;
73 virtual void SAL_CALL removeByName(const OUString& Name) throw( css::container::NoSuchElementException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception ) override;
75 // css::lang::XServiceInfo
76 virtual OUString SAL_CALL getImplementationName() throw( css::uno::RuntimeException, std::exception ) override;
77 virtual css::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames() throw( css::uno::RuntimeException, std::exception ) override;
78 virtual sal_Bool SAL_CALL supportsService(const OUString& ServiceName) throw( css::uno::RuntimeException, std::exception ) override;
80 friend css::uno::Reference< css::uno::XInterface > SvUnoAttributeContainer_CreateInstance( const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr ) throw( css::uno::Exception );
83 #endif
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */