diff options
author | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-08-28 15:55:56 -0400 |
---|---|---|
committer | Kohei Yoshida <kohei.yoshida@gmail.com> | 2013-08-28 16:13:53 -0400 |
commit | 1e3c5948c35cd0b2178b1cf204709ed36c6123c7 (patch) | |
tree | 9bd109d6fcc51fce4576558295673fb679c927ff /include/editeng | |
parent | ea59b6f5b922839e82f21727ab4d6c5d78176c0b (diff) |
Expose misspelled range container outside edit engine.
Change-Id: I04c87c5299559932733c88a317808241fd1755d4
Diffstat (limited to 'include/editeng')
-rw-r--r-- | include/editeng/misspellrange.hxx | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/include/editeng/misspellrange.hxx b/include/editeng/misspellrange.hxx new file mode 100644 index 000000000000..103b58a9e153 --- /dev/null +++ b/include/editeng/misspellrange.hxx @@ -0,0 +1,30 @@ +/* -*- 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 EDITENG_MISSPELLRANGE_HXX +#define EDITENG_MISSPELLRANGE_HXX + +#include "editeng/editengdllapi.h" + +namespace editeng { + +struct EDITENG_DLLPUBLIC MisspellRange +{ + size_t mnStart; + size_t mnEnd; + + MisspellRange(); + MisspellRange(size_t nStart, size_t nEnd); +}; + +} + +#endif + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |