summaryrefslogtreecommitdiff
path: root/include/cppcanvas
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2020-02-02 12:51:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-02-02 19:38:58 +0100
commit14b6fae258fe74c5cccf1e6d63ff32ae698d0f6c (patch)
treebf9f9333c263b57f30d7c75e59c298f41f40f219 /include/cppcanvas
parentff546a5dd35d6a31f01c70a9b995afc1f7b7389e (diff)
remove some unused headers
found with a little python script(include) and some grepping, so probably not 100% reliable. Change-Id: I1a26a37ef7297c2cc07ed5fd2e0af45280e64c13 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87824 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/cppcanvas')
-rw-r--r--include/cppcanvas/font.hxx41
1 files changed, 0 insertions, 41 deletions
diff --git a/include/cppcanvas/font.hxx b/include/cppcanvas/font.hxx
deleted file mode 100644
index e52a5778f56f..000000000000
--- a/include/cppcanvas/font.hxx
+++ /dev/null
@@ -1,41 +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_CPPCANVAS_FONT_HXX
-#define INCLUDED_CPPCANVAS_FONT_HXX
-
-#include <memory>
-
-/* Definition of Font class */
-
-namespace cppcanvas
-{
-
- class Font
- {
- public:
- virtual ~Font() {}
- };
-
- typedef std::shared_ptr< ::cppcanvas::Font > FontSharedPtr;
-}
-
-#endif // INCLUDED_CPPCANVAS_FONT_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */