summaryrefslogtreecommitdiff
path: root/sc/source/ui/dataprovider
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-08-14 17:06:05 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2017-08-14 22:09:11 +0200
commitcf410b712b069455f598ad3f8cdaa7bc37411c9d (patch)
tree8f06e1eecc486e5fc737c6e762e56961a9fb30b5 /sc/source/ui/dataprovider
parentb0080a8c69f1ff1fd19a0c735012a2037569b8f1 (diff)
external data: add first test for data transformations
Change-Id: I300cf3b9f094c912eb4b7618e405ad320e43e008 Reviewed-on: https://gerrit.libreoffice.org/41147 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'sc/source/ui/dataprovider')
-rw-r--r--sc/source/ui/dataprovider/datatransformation.hxx43
1 files changed, 0 insertions, 43 deletions
diff --git a/sc/source/ui/dataprovider/datatransformation.hxx b/sc/source/ui/dataprovider/datatransformation.hxx
deleted file mode 100644
index cbe181aa921d..000000000000
--- a/sc/source/ui/dataprovider/datatransformation.hxx
+++ /dev/null
@@ -1,43 +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/.
- */
-
-#ifndef INCLUDED_SC_SOURCE_UI_DATAPROVIDER_DATATRANSFORMATION_HXX
-#define INCLUDED_SC_SOURCE_UI_DATAPROVIDER_DATATRANSFORMATION_HXX
-
-#include <address.hxx>
-
-class ScDocument;
-
-namespace sc {
-
-class DataTransformation
-{
-public:
- virtual ~DataTransformation();
-
- virtual void Transform(ScDocument& rDoc) = 0;
-};
-
-class ColumnRemoveTransformation : public DataTransformation
-{
- SCCOL mnCol;
-
-public:
-
- ColumnRemoveTransformation(SCCOL nCol);
- virtual ~ColumnRemoveTransformation() override;
-
- virtual void Transform(ScDocument& rDoc) override;
-};
-
-}
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */