LibreOffice Module svx (master) 1
itextprovider.hxx
Go to the documentation of this file.
1/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2/*
3 * This file is part of the LibreOffice project.
4 *
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 */
9
10#ifndef INCLUDED_SVX_ITEXTPROVIDER_HXX
11#define INCLUDED_SVX_ITEXTPROVIDER_HXX
12
13#include <sal/types.h>
14
15#include <svx/svxdllapi.h>
16
17class SdrText;
18
19namespace svx
20{
21
26 {
27 public:
29 virtual sal_Int32 getTextCount() const = 0;
30
32 virtual SdrText* getText(sal_Int32 nIndex) const = 0;
33
34 protected:
36 };
37
38}
39
40#endif
41
42/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
This interface provides access to text object(s) in an SdrObject.
virtual sal_Int32 getTextCount() const =0
Return the number of texts available for this object.
virtual SdrText * getText(sal_Int32 nIndex) const =0
Return the nth available text.
#define SVXCORE_DLLPUBLIC
Definition: svxdllapi.h:35