summaryrefslogtreecommitdiff
path: root/chart2/inc
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-01-18 15:49:00 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-01-18 20:45:02 +0100
commit3e7b2b12292537e5c6d8b3885ab672187c14e213 (patch)
treeeb0f3b23e53f15cd7a8fbcd8c487abd0c010f8eb /chart2/inc
parent0d97c05696fa6f9c0f1f754158622bc352752346 (diff)
use more concrete types in chart2, ChartTypeTemplate
Change-Id: Ife0be0fde2f8d273411cbdbbafa2173ac80f80f7 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128560 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'chart2/inc')
-rw-r--r--chart2/inc/ChartTypeManager.hxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/chart2/inc/ChartTypeManager.hxx b/chart2/inc/ChartTypeManager.hxx
index 45e571f7aab5..0ed5b3ef4812 100644
--- a/chart2/inc/ChartTypeManager.hxx
+++ b/chart2/inc/ChartTypeManager.hxx
@@ -23,11 +23,13 @@
#include <com/sun/star/lang/XServiceInfo.hpp>
#include <com/sun/star/chart2/XChartTypeManager.hpp>
#include <charttoolsdllapi.hxx>
+#include <rtl/ref.hxx>
namespace com::sun::star::uno { class XComponentContext; }
namespace chart
{
+class ChartTypeTemplate;
class OOO_DLLPUBLIC_CHARTTOOLS ChartTypeManager final :
public ::cppu::WeakImplHelper<
@@ -60,6 +62,8 @@ public:
// ____ XChartTypeManager ____
// currently empty
+ rtl::Reference< ::chart::ChartTypeTemplate > createTemplate( const OUString& aServiceSpecifier );
+
private:
css::uno::Reference< css::uno::XComponentContext >
m_xContext;