From ecc154cd2a4574a8b9754c0ee7c8eeee9afc56e7 Mon Sep 17 00:00:00 2001 From: Tomaž Vajngerl Date: Fri, 8 Dec 2023 15:42:01 +0900 Subject: editeng: move EPosition in its own header file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I6362bfdde31e276c006be3799839e9c1ff4f82f6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161344 Tested-by: Jenkins Reviewed-by: Tomaž Vajngerl --- include/editeng/EPosition.hxx | 49 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 include/editeng/EPosition.hxx (limited to 'include/editeng/EPosition.hxx') diff --git a/include/editeng/EPosition.hxx b/include/editeng/EPosition.hxx new file mode 100644 index 000000000000..ca6a3e13bee0 --- /dev/null +++ b/include/editeng/EPosition.hxx @@ -0,0 +1,49 @@ +/* -*- 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 + +#define EE_INDEX_NOT_FOUND SAL_MAX_INT32 +#define EE_PARA_NOT_FOUND SAL_MAX_INT32 + +struct EPosition +{ + sal_Int32 nPara; + sal_Int32 nIndex; + + EPosition() + : nPara(EE_PARA_NOT_FOUND) + , nIndex(EE_INDEX_NOT_FOUND) + { + } + + EPosition(sal_Int32 nPara_, sal_Int32 nPos_) + : nPara(nPara_) + , nIndex(nPos_) + { + } +}; + +template +inline std::basic_ostream& operator<<(std::basic_ostream& stream, + EPosition const& pos) +{ + return stream << "EPosition(" << pos.nPara << ',' << pos.nIndex << ")"; +} +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit