blob: 86be87789d78266d82af680f911d214bfab89bf5 [file] [log] [blame]
/**************************************************************
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*************************************************************/
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_chart2.hxx"
#include "_serviceregistration_charttypes.hxx"
#include "AreaChartType.hxx"
#include "BarChartType.hxx"
#include "CandleStickChartType.hxx"
#include "ColumnChartType.hxx"
#include "LineChartType.hxx"
#include "NetChartType.hxx"
#include "FilledNetChartType.hxx"
#include "PieChartType.hxx"
#include "ScatterChartType.hxx"
#include "BubbleChartType.hxx"
namespace
{
static struct ::cppu::ImplementationEntry g_entries_chart2_charttypes[] =
{
{
::chart::AreaChartType::create
, ::chart::AreaChartType::getImplementationName_Static
, ::chart::AreaChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::BarChartType::create
, ::chart::BarChartType::getImplementationName_Static
, ::chart::BarChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::CandleStickChartType::create
, ::chart::CandleStickChartType::getImplementationName_Static
, ::chart::CandleStickChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::ColumnChartType::create
, ::chart::ColumnChartType::getImplementationName_Static
, ::chart::ColumnChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::LineChartType::create
, ::chart::LineChartType::getImplementationName_Static
, ::chart::LineChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::NetChartType::create
, ::chart::NetChartType::getImplementationName_Static
, ::chart::NetChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::FilledNetChartType::create
, ::chart::FilledNetChartType::getImplementationName_Static
, ::chart::FilledNetChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::PieChartType::create
, ::chart::PieChartType::getImplementationName_Static
, ::chart::PieChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::ScatterChartType::create
, ::chart::ScatterChartType::getImplementationName_Static
, ::chart::ScatterChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{
::chart::BubbleChartType::create
, ::chart::BubbleChartType::getImplementationName_Static
, ::chart::BubbleChartType::getSupportedServiceNames_Static
, ::cppu::createSingleComponentFactory
, 0
, 0
}
,{ 0, 0, 0, 0, 0, 0 }
};
} // anonymous namespace
struct ::cppu::ImplementationEntry *
ChartTypeEntriesForServiceRegistration::getImplementationEntries()
{
return g_entries_chart2_charttypes;
}