Avoid potential negative array index access to cached text.
[LibreOffice.git] / chart2 / source / inc / DataSource.hxx
blob6e9b84ed9bd941c4c5f3e32daf21812757c22abb
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 .
19 #pragma once
21 #include <com/sun/star/lang/XServiceInfo.hpp>
22 #include <com/sun/star/chart2/data/XDataSource.hpp>
23 #include <com/sun/star/chart2/data/XDataSink.hpp>
24 #include <cppuhelper/implbase.hxx>
25 #include <vector>
26 #include "charttoolsdllapi.hxx"
28 namespace chart
30 class LabeledDataSequence;
32 class OOO_DLLPUBLIC_CHARTTOOLS DataSource final : public
33 ::cppu::WeakImplHelper<
34 css::lang::XServiceInfo,
35 css::chart2::data::XDataSource,
36 css::chart2::data::XDataSink >
38 public:
39 explicit DataSource();
40 explicit DataSource(
41 const css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > > & rSequences );
42 explicit DataSource(
43 const std::vector< css::uno::Reference< css::chart2::data::XLabeledDataSequence > > & rSequences );
45 virtual ~DataSource() override;
47 /// declare XServiceInfo methods
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 // ____ XDataSource ____
53 virtual css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > > SAL_CALL
54 getDataSequences() override;
56 // ____ XDataSink ____
57 virtual void SAL_CALL setData( const css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > >& aData ) override;
59 private:
60 css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > >
61 m_aDataSeq;
64 } // namespace chart
66 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */