1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #include "AreaChartType.hxx"
21 #include <servicenames_charttypes.hxx>
22 #include <cppuhelper/supportsservice.hxx>
24 namespace com::sun::star::uno
{ class XComponentContext
; }
26 using namespace ::com::sun::star
;
31 AreaChartType::AreaChartType()
34 AreaChartType::AreaChartType( const AreaChartType
& rOther
) :
38 AreaChartType::~AreaChartType()
41 // ____ XCloneable ____
42 uno::Reference
< util::XCloneable
> SAL_CALL
AreaChartType::createClone()
44 return uno::Reference
< util::XCloneable
>( new AreaChartType( *this ));
47 rtl::Reference
< ChartType
> AreaChartType::cloneChartType() const
49 return new AreaChartType( *this );
52 // ____ XChartType ____
53 OUString SAL_CALL
AreaChartType::getChartType()
55 return CHART2_SERVICE_NAME_CHARTTYPE_AREA
;
58 OUString SAL_CALL
AreaChartType::getImplementationName()
60 return u
"com.sun.star.comp.chart.AreaChartType"_ustr
;
63 sal_Bool SAL_CALL
AreaChartType::supportsService( const OUString
& rServiceName
)
65 return cppu::supportsService(this, rServiceName
);
68 css::uno::Sequence
< OUString
> SAL_CALL
AreaChartType::getSupportedServiceNames()
71 CHART2_SERVICE_NAME_CHARTTYPE_AREA
,
72 u
"com.sun.star.chart2.ChartType"_ustr
};
77 extern "C" SAL_DLLPUBLIC_EXPORT
css::uno::XInterface
*
78 com_sun_star_comp_chart_AreaChartType_get_implementation(css::uno::XComponentContext
* /*context*/,
79 css::uno::Sequence
<css::uno::Any
> const &)
81 return cppu::acquire(new ::chart::AreaChartType
);
84 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */