diff options
author | Tor Lillqvist <tml@collabora.com> | 2014-05-06 14:35:49 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@collabora.com> | 2014-05-06 14:41:30 +0300 |
commit | a1dd961c3093f5f7624e4d1f2240e9120fd13f23 (patch) | |
tree | 1b3546e0c20cd7a9bc85a9629968dc7d9acbc9bf /include/svx/sxtraitm.hxx | |
parent | 1fd0d0f3fc8b71675f961a08ad4cdbc8e186a6bc (diff) |
Move headers included only in svx itself from include/svx to svx/inc
Change-Id: Ib735e6566981232fec8b13c81a2de11a6b21dfe7
Diffstat (limited to 'include/svx/sxtraitm.hxx')
-rw-r--r-- | include/svx/sxtraitm.hxx | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/include/svx/sxtraitm.hxx b/include/svx/sxtraitm.hxx deleted file mode 100644 index 59bb5970ef45..000000000000 --- a/include/svx/sxtraitm.hxx +++ /dev/null @@ -1,63 +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_SVX_SXTRAITM_HXX -#define INCLUDED_SVX_SXTRAITM_HXX - -#include <svx/svddef.hxx> -#include <svx/sdmetitm.hxx> - - -// class SdrTransformRef1XItem - -class SdrTransformRef1XItem: public SdrMetricItem { -public: - SdrTransformRef1XItem(long nHgt=0): SdrMetricItem(SDRATTR_TRANSFORMREF1X,nHgt) {} - SdrTransformRef1XItem(SvStream& rIn): SdrMetricItem(SDRATTR_TRANSFORMREF1X,rIn) {} -}; - - -// class SdrTransformRef1YItem - -class SdrTransformRef1YItem: public SdrMetricItem { -public: - SdrTransformRef1YItem(long nHgt=0): SdrMetricItem(SDRATTR_TRANSFORMREF1Y,nHgt) {} - SdrTransformRef1YItem(SvStream& rIn): SdrMetricItem(SDRATTR_TRANSFORMREF1Y,rIn) {} -}; - - -// class SdrTransformRef2XItem - -class SdrTransformRef2XItem: public SdrMetricItem { -public: - SdrTransformRef2XItem(long nHgt=0): SdrMetricItem(SDRATTR_TRANSFORMREF2X,nHgt) {} - SdrTransformRef2XItem(SvStream& rIn): SdrMetricItem(SDRATTR_TRANSFORMREF2X,rIn) {} -}; - - -// class SdrTransformRef2YItem - -class SdrTransformRef2YItem: public SdrMetricItem { -public: - SdrTransformRef2YItem(long nHgt=0): SdrMetricItem(SDRATTR_TRANSFORMREF2Y,nHgt) {} - SdrTransformRef2YItem(SvStream& rIn): SdrMetricItem(SDRATTR_TRANSFORMREF2Y,rIn) {} -}; - -#endif - -/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |