Files
loongoffice/include/editeng/section.hxx
Norbert Thiebaud 3cbfcee36d xub_StrLen and tools/string.hxx final straw
Thre is still some 0xffff limit left and possibly some
less than gracefully handled overflow/error cases

Change-Id: I00957ee3a30b02f73918ea49d7353056263dc638
Reviewed-on: https://gerrit.libreoffice.org/7787
Reviewed-by: Norbert Thiebaud <nthiebaud@gmail.com>
Tested-by: Norbert Thiebaud <nthiebaud@gmail.com>
2014-02-03 07:44:28 +00:00

38 lines
817 B
C++

/* -*- 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/.
*/
#ifndef INCLUDED_EDITENG_SECTION_HXX
#define INCLUDED_EDITENG_SECTION_HXX
#include <editeng/editengdllapi.h>
#include <vector>
class SfxPoolItem;
namespace editeng {
struct EDITENG_DLLPUBLIC Section
{
sal_Int32 mnParagraph;
sal_Int32 mnStart;
sal_Int32 mnEnd;
std::vector<const SfxPoolItem*> maAttributes;
Section();
Section(sal_Int32 nPara, sal_Int32 nStart, sal_Int32 nEnd);
};
}
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */