/* -*- 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 . */ #pragma once #include #include namespace sw { enum class tExternalDataType { FIB, STTBF_ASSOC }; struct ExternalDataTypeHash { size_t operator()(tExternalDataType eType) const { return static_cast(eType); } }; class ExternalData { public: virtual ~ExternalData() {} }; typedef std::shared_ptr tExternalDataPointer; } class IDocumentExternalData { protected: typedef std::unordered_map tExternalData; tExternalData m_externalData; virtual ~IDocumentExternalData() {}; public: virtual void setExternalData(sw::tExternalDataType eType, const sw::tExternalDataPointer& pPayload) = 0; virtual sw::tExternalDataPointer getExternalData(sw::tExternalDataType eType) = 0; }; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ tro/collabora/cp-4.2'>distro/collabora/cp-4.2 LibreOffice 界面翻译代码仓库文档基金会
aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2024-08-08 22:30:31 +0200
committerChristian Lohmaier <lohmaier+LibreOffice@googlemail.com>2024-08-08 22:32:30 +0200
commit45533a00382950d51c74afc962e9c35d1dea5515 (patch)
tree6bdaba4f0b4331add5f4e63dcde699f9b62eb5f1
parent6d1d800bd75a27d84866b7e8931d0cb1e12dbdd3 (diff)
update translations for 24.8.0 rc3
and force-fix errors using pocheck Change-Id: Ib855d52b14ef3d675be15e941d8eba65eed1a814