summaryrefslogtreecommitdiff
path: root/include/svl
diff options
context:
space:
mode:
authorJochen Nitschke <j.nitschke+logerrit@ok.de>2017-08-17 20:49:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-08-18 12:34:56 +0200
commit08566ea519441be31a4b1a467ec121d18fd29b9b (patch)
tree398f90eccc687f7a2a4a8efc06a84e616b216fcd /include/svl
parentdf48f780e3baf3f82fbe9024c94fccc15a84d53d (diff)
drop unused CntContentTypeItem
unused since commit cdae06a664bfc3279bd9f177473357cce316b9b1 Date: Fri Apr 6 11:17:10 2001 +0000 #78400# Template scanning reimplemented using UCB Change-Id: I3e742be5a7c5467628dbe5a19171c4dfcef07c58 Reviewed-on: https://gerrit.libreoffice.org/41274 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-rw-r--r--include/svl/ctypeitm.hxx67
1 files changed, 0 insertions, 67 deletions
diff --git a/include/svl/ctypeitm.hxx b/include/svl/ctypeitm.hxx
deleted file mode 100644
index 3fae7a61f215..000000000000
--- a/include/svl/ctypeitm.hxx
+++ /dev/null
@@ -1,67 +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_SVL_CTYPEITM_HXX
-#define INCLUDED_SVL_CTYPEITM_HXX
-
-#include <svl/inettype.hxx>
-#include <svl/custritm.hxx>
-
-
-class CntContentTypeItem : public CntUnencodedStringItem
-{
-private:
- INetContentType _eType;
- OUString _aPresentation;
-
-public:
-
- CntContentTypeItem( sal_uInt16 nWhich, const OUString& rType );
- CntContentTypeItem( const CntContentTypeItem& rOrig );
-
- virtual SfxPoolItem* Create( SvStream& rStream,
- sal_uInt16 nItemVersion ) const override;
- virtual SvStream & Store(SvStream & rStream, sal_uInt16) const override;
-
- virtual bool operator==( const SfxPoolItem& rOrig ) const override;
-
- virtual sal_uInt16 GetVersion(sal_uInt16) const override;
-
- virtual SfxPoolItem* Clone( SfxItemPool *pPool = nullptr ) const override;
-
- void SetValue( const OUString& rNewVal );
-
- virtual bool GetPresentation( SfxItemPresentation ePres,
- MapUnit eCoreMetric,
- MapUnit ePresMetric,
- OUString & rText,
- const IntlWrapper& rIntlWrapper ) const override;
-
- virtual bool QueryValue( css::uno::Any& rVal,
- sal_uInt8 nMemberId = 0 ) const override;
- virtual bool PutValue ( const css::uno::Any& rVal,
- sal_uInt8 nMemberId ) override;
-
- INetContentType GetEnumValue() const;
-
- void SetValue( const INetContentType eType );
-};
-
-#endif /* ! INCLUDED_SVL_CTYPEITM_HXX */
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */