summaryrefslogtreecommitdiff
path: root/sw/inc/IDocumentLineNumberAccess.hxx
diff options
context:
space:
mode:
authorValentin Kettner <vakevk+libreoffice@gmail.com>2014-07-29 13:03:49 +0200
committerValentin Kettner <vakevk+libreoffice@gmail.com>2014-08-12 23:26:37 +0200
commit9d43f6d2c48373811290c82aba190a39c29512cc (patch)
treed1b7c5cc06c51a2e5b2ff0a3c26b0a32fe833e7d /sw/inc/IDocumentLineNumberAccess.hxx
parent69e5f335abcd838ad6dac04f8e2d14f39856dc43 (diff)
Refactored IDocumentLineNumberAccess.
This interface is obsolete and was deleted. Change-Id: I56d37814f6e43f083ab3d199237ade06db287e18
Diffstat (limited to 'sw/inc/IDocumentLineNumberAccess.hxx')
-rw-r--r--sw/inc/IDocumentLineNumberAccess.hxx42
1 files changed, 0 insertions, 42 deletions
diff --git a/sw/inc/IDocumentLineNumberAccess.hxx b/sw/inc/IDocumentLineNumberAccess.hxx
deleted file mode 100644
index b63d004485a8..000000000000
--- a/sw/inc/IDocumentLineNumberAccess.hxx
+++ /dev/null
@@ -1,42 +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_SW_INC_IDOCUMENTLINENUMBERACCESS_HXX
-#define INCLUDED_SW_INC_IDOCUMENTLINENUMBERACCESS_HXX
-
-#include <sal/types.h>
-
-class SwLineNumberInfo;
-
-/** Access to the line number information
- */
-class IDocumentLineNumberAccess
-{
-public:
-
- virtual const SwLineNumberInfo& GetLineNumberInfo() const = 0;
- virtual void SetLineNumberInfo(const SwLineNumberInfo& rInfo) = 0;
-
-protected:
- virtual ~IDocumentLineNumberAccess() {};
-};
-
-#endif // INCLUDED_SW_INC_IDOCUMENTLINENUMBERACCESS_HXX
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */