tdf#151073 - enable firebird for appstore build w/o experimental mode
[LibreOffice.git] / include / svx / itextprovider.hxx
blob361b2293e36fd053830827a0531a3671a5e547b3
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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 */
10 #ifndef INCLUDED_SVX_ITEXTPROVIDER_HXX
11 #define INCLUDED_SVX_ITEXTPROVIDER_HXX
13 #include <sal/types.h>
15 #include <svx/svxdllapi.h>
17 class SdrText;
19 namespace svx
22 /** This interface provides access to text object(s) in an SdrObject.
25 class SVXCORE_DLLPUBLIC ITextProvider
27 public:
28 /** Return the number of texts available for this object. */
29 virtual sal_Int32 getTextCount() const = 0;
31 /** Return the nth available text. */
32 virtual SdrText* getText(sal_Int32 nIndex) const = 0;
34 protected:
35 ~ITextProvider() {}
40 #endif
42 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */