summaryrefslogtreecommitdiff
path: root/include/oox/drawingml/chart/plotareacontext.hxx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@collabora.com>2014-06-24 21:16:18 +0200
committerMatúš Kukan <matus.kukan@collabora.com>2014-06-25 09:45:26 +0200
commit2e049367219d427e315e58ef193438ea48a0196b (patch)
treeb9d8f4e8589a102528022c01bec9c342aa7d41df /include/oox/drawingml/chart/plotareacontext.hxx
parent3a8d0c0ff5c3b23de3bfb416a5c0e44e5ddc467a (diff)
Move more oox/drawingml/ internal headers to oox/inc.
Change-Id: I0963c92356f8388ce02fb36e172ad3b2af8ba8f8
Diffstat (limited to 'include/oox/drawingml/chart/plotareacontext.hxx')
-rw-r--r--include/oox/drawingml/chart/plotareacontext.hxx98
1 files changed, 0 insertions, 98 deletions
diff --git a/include/oox/drawingml/chart/plotareacontext.hxx b/include/oox/drawingml/chart/plotareacontext.hxx
deleted file mode 100644
index 4a2c06d90ec1..000000000000
--- a/include/oox/drawingml/chart/plotareacontext.hxx
+++ /dev/null
@@ -1,98 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * 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 .
- */
-
-#ifndef INCLUDED_OOX_DRAWINGML_CHART_PLOTAREACONTEXT_HXX
-#define INCLUDED_OOX_DRAWINGML_CHART_PLOTAREACONTEXT_HXX
-
-#include <oox/drawingml/chart/chartcontextbase.hxx>
-
-namespace oox {
-namespace drawingml {
-namespace chart {
-
-
-
-struct View3DModel;
-
-/** Handler for a chart plot area context (c:plotArea element).
- */
-class View3DContext : public ContextBase< View3DModel >
-{
-public:
- explicit View3DContext( ::oox::core::ContextHandler2Helper& rParent, View3DModel& rModel );
- virtual ~View3DContext();
-
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE;
-};
-
-
-
-struct WallFloorModel;
-
-/** Handler for a chart wall/floor context (c:backWall, c:floor, c:sideWall
- elements).
- */
-class WallFloorContext : public ContextBase< WallFloorModel >
-{
-public:
- explicit WallFloorContext( ::oox::core::ContextHandler2Helper& rParent, WallFloorModel& rModel );
- virtual ~WallFloorContext();
-
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE;
-};
-
-
-
-struct DataTableModel;
-
-/** Handler for a data table context (c:dTable element).
- */
-class DataTableContext : public ContextBase< DataTableModel >
-{
-public:
- explicit DataTableContext( ::oox::core::ContextHandler2Helper& rParent, DataTableModel& rModel );
- virtual ~DataTableContext();
-
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE;
-};
-
-
-
-struct PlotAreaModel;
-
-/** Handler for a chart plot area context (c:plotArea element).
- */
-class PlotAreaContext : public ContextBase< PlotAreaModel >
-{
-public:
- explicit PlotAreaContext( ::oox::core::ContextHandler2Helper& rParent, PlotAreaModel& rModel );
- virtual ~PlotAreaContext();
-
- virtual ::oox::core::ContextHandlerRef onCreateContext( sal_Int32 nElement, const AttributeList& rAttribs ) SAL_OVERRIDE;
-};
-
-
-
-} // namespace chart
-} // namespace drawingml
-} // namespace oox
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */