android: Update app-specific/MIME type icons
[LibreOffice.git] / sw / inc / BorderCacheOwner.hxx
blob8a70dda7460d3fad98f57003411a511e99ab37eb
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4; fill-column: 100 -*- */
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 #pragma once
12 #include <sal/types.h>
14 class SwBorderAttrs;
15 class SwBorderAttrAccess;
17 namespace sw
19 /// Bookkeeping helper for SwCache caching writer borders.
20 class BorderCacheOwner
22 private:
23 friend SwBorderAttrs;
24 friend SwBorderAttrAccess;
25 bool m_bInCache;
27 public:
28 BorderCacheOwner()
29 : m_bInCache(false)
32 BorderCacheOwner(BorderCacheOwner&)
33 : m_bInCache(false)
36 BorderCacheOwner& operator=(const BorderCacheOwner&)
38 m_bInCache = false;
39 return *this;
41 ~BorderCacheOwner();
42 bool IsInCache() const { return m_bInCache; }
43 void InvalidateInSwCache(const sal_uInt16);
46 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */