diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-06-26 19:14:44 +0200 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-06-27 13:34:35 +0200 |
commit | bbac35af148ed6c9f19386e4721fa38b500f45a1 (patch) | |
tree | 43ee01225670f082bafe9c786d32a0aab548563a /sot | |
parent | 8f30e0ae6a8adc5a0973067fedebf878e52ac124 (diff) |
Remove unused header files
These were only referenced by Package_inc.mk...
Change-Id: Idc771477595b9d221f9f2003b293fdd1ba7e1588
Diffstat (limited to 'sot')
-rw-r--r-- | sot/Package_inc.mk | 1 | ||||
-rw-r--r-- | sot/inc/sot/absdev.hxx | 40 |
2 files changed, 0 insertions, 41 deletions
diff --git a/sot/Package_inc.mk b/sot/Package_inc.mk index 3cee0568c0ef..371ab98ebbb9 100644 --- a/sot/Package_inc.mk +++ b/sot/Package_inc.mk @@ -18,7 +18,6 @@ # $(eval $(call gb_Package_Package,sot_inc,$(SRCDIR)/sot/inc)) -$(eval $(call gb_Package_add_file,sot_inc,inc/sot/absdev.hxx,sot/absdev.hxx)) $(eval $(call gb_Package_add_file,sot_inc,inc/sot/clsids.hxx,sot/clsids.hxx)) $(eval $(call gb_Package_add_file,sot_inc,inc/sot/exchange.hxx,sot/exchange.hxx)) $(eval $(call gb_Package_add_file,sot_inc,inc/sot/factory.hxx,sot/factory.hxx)) diff --git a/sot/inc/sot/absdev.hxx b/sot/inc/sot/absdev.hxx deleted file mode 100644 index 2c581fb6e220..000000000000 --- a/sot/inc/sot/absdev.hxx +++ /dev/null @@ -1,40 +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 _SOT_ABSDEV_HXX -#define _SOT_ABSDEV_HXX - -#include <tools/solar.h> - -class JobSetup; -class AbstractDeviceData -{ -protected: - JobSetup * pJobSetup; -public: - virtual ~AbstractDeviceData() {} - virtual AbstractDeviceData * Copy() const = 0; - virtual sal_Bool Equals( const AbstractDeviceData & ) const = 0; - - JobSetup * GetJobSetup() const { return pJobSetup; } -}; - -#endif // _SOT_ABSDEV_HXX - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |