LibreOffice Module chart2 (master) 1
DataSource.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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/.
8 *
9 * This file incorporates work covered by the following license notice:
10 *
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 .
18 */
19#pragma once
20
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>
25#include <vector>
26#include "charttoolsdllapi.hxx"
27
28namespace chart
29{
30class LabeledDataSequence;
31
33 ::cppu::WeakImplHelper<
34 css::lang::XServiceInfo,
35 css::chart2::data::XDataSource,
36 css::chart2::data::XDataSink >
37{
38public:
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 );
44
45 virtual ~DataSource() override;
46
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;
51
52 // ____ XDataSource ____
53 virtual css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > > SAL_CALL
54 getDataSequences() override;
55
56 // ____ XDataSink ____
57 virtual void SAL_CALL setData( const css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > >& aData ) override;
58
59private:
60 css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > >
62};
63
64} // namespace chart
65
66/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
#define OOO_DLLPUBLIC_CHARTTOOLS
DataSource(const css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > > &rSequences)
DataSource(const std::vector< css::uno::Reference< css::chart2::data::XLabeledDataSequence > > &rSequences)
css::uno::Sequence< css::uno::Reference< css::chart2::data::XLabeledDataSequence > > m_aDataSeq
Definition: DataSource.hxx:61
css::uno::Sequence< OUString > getSupportedServiceNames()
OUString getImplementationName()
bool CPPUHELPER_DLLPUBLIC supportsService(css::lang::XServiceInfo *implementation, rtl::OUString const &name)
unsigned char sal_Bool