Stop leaking all ScPostIt instances.
[LibreOffice.git] / sc / source / ui / inc / cliputil.hxx
blob541de3b79befcf11e2c3b74824b0ee848f5f908f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 */
10 #ifndef __SC_CLIPUTIL_HXX__
11 #define __SC_CLIPUTIL_HXX__
13 #include "address.hxx"
15 class ScViewData;
16 class ScTabViewShell;
17 class ScDocument;
18 class ScMarkData;
19 class ScRangeList;
21 class ScClipUtil
23 ScClipUtil();
24 ~ScClipUtil();
25 public:
26 static void PasteFromClipboard( ScViewData* pViewData, ScTabViewShell* pTabViewShell, bool bShowDialog );
28 static bool CheckDestRanges(
29 ScDocument* pDoc, SCCOL nSrcCols, SCROW nSrcRows, const ScMarkData& rMark,
30 const ScRangeList& rDest);
33 #endif
35 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */