bump product version to 4.1.6.2
[LibreOffice.git] / chart2 / source / inc / NameContainer.hxx
blob029f4521674e59d5f3c1037862ea5ecbf631acf9
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 _CHART2_NAMECONTAINER_HXX
21 #define _CHART2_NAMECONTAINER_HXX
23 #include <com/sun/star/container/XNameContainer.hpp>
24 #include <com/sun/star/lang/XServiceInfo.hpp>
25 #include <com/sun/star/uno/XComponentContext.hpp>
26 #include <com/sun/star/util/XCloneable.hpp>
27 #include <cppuhelper/implbase3.hxx>
28 #include "charttoolsdllapi.hxx"
30 #include <map>
32 //.............................................................................
33 namespace chart
35 //.............................................................................
37 OOO_DLLPUBLIC_CHARTTOOLS ::com::sun::star::uno::Reference< ::com::sun::star::container::XNameContainer > createNameContainer(
38 const ::com::sun::star::uno::Type& rType, const OUString& rServicename, const OUString& rImplementationName );
40 namespace impl
42 typedef ::cppu::WeakImplHelper3<
43 ::com::sun::star::container::XNameContainer,
44 ::com::sun::star::lang::XServiceInfo,
45 ::com::sun::star::util::XCloneable >
46 NameContainer_Base;
49 class NameContainer : public impl::NameContainer_Base
51 public:
52 NameContainer( const ::com::sun::star::uno::Type& rType, const OUString& rServicename, const OUString& rImplementationName );
53 explicit NameContainer( const NameContainer & rOther );
54 virtual ~NameContainer();
56 // XServiceInfo
57 virtual OUString SAL_CALL getImplementationName( ) throw(::com::sun::star::uno::RuntimeException);
58 virtual sal_Bool SAL_CALL supportsService( const OUString& ServiceName ) throw(::com::sun::star::uno::RuntimeException);
59 virtual ::com::sun::star::uno::Sequence< OUString > SAL_CALL getSupportedServiceNames( ) throw(::com::sun::star::uno::RuntimeException);
61 // XNameContainer
62 virtual void SAL_CALL insertByName( const OUString& aName, const com::sun::star::uno::Any& aElement ) throw( com::sun::star::lang::IllegalArgumentException, com::sun::star::container::ElementExistException, com::sun::star::lang::WrappedTargetException, com::sun::star::uno::RuntimeException);
63 virtual void SAL_CALL removeByName( const OUString& Name ) throw( com::sun::star::container::NoSuchElementException, com::sun::star::lang::WrappedTargetException, com::sun::star::uno::RuntimeException);
65 // XNameReplace
66 virtual void SAL_CALL replaceByName( const OUString& aName, const com::sun::star::uno::Any& aElement ) throw( com::sun::star::lang::IllegalArgumentException, com::sun::star::container::NoSuchElementException, com::sun::star::lang::WrappedTargetException, com::sun::star::uno::RuntimeException);
68 // XNameAccess
69 virtual com::sun::star::uno::Any SAL_CALL getByName( const OUString& aName ) throw( com::sun::star::container::NoSuchElementException, com::sun::star::lang::WrappedTargetException, com::sun::star::uno::RuntimeException);
70 virtual com::sun::star::uno::Sequence< OUString > SAL_CALL getElementNames( ) throw( com::sun::star::uno::RuntimeException);
71 virtual sal_Bool SAL_CALL hasByName( const OUString& aName ) throw( com::sun::star::uno::RuntimeException);
73 // XElementAccess
74 virtual sal_Bool SAL_CALL hasElements( ) throw( com::sun::star::uno::RuntimeException);
75 virtual com::sun::star::uno::Type SAL_CALL getElementType( ) throw( com::sun::star::uno::RuntimeException);
77 // XCloneable
78 virtual ::com::sun::star::uno::Reference< ::com::sun::star::util::XCloneable > SAL_CALL createClone() throw (::com::sun::star::uno::RuntimeException);
80 private: //methods
81 NameContainer();//no default contructor
83 private: //member
84 const ::com::sun::star::uno::Type m_aType;
85 const OUString m_aServicename;
86 const OUString m_aImplementationName;
88 typedef ::std::map< OUString, com::sun::star::uno::Any > tContentMap;
90 tContentMap m_aMap;
93 //.............................................................................
94 } //namespace chart
95 //.............................................................................
96 #endif
98 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */