LibreOffice Module test (master) 1
xcellrangereferrer.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_TEST_SHEET_XCELLRANGEREFERRER_HXX
11#define INCLUDED_TEST_SHEET_XCELLRANGEREFERRER_HXX
12
13#include <com/sun/star/table/CellRangeAddress.hpp>
14#include <com/sun/star/uno/XInterface.hpp>
15#include <com/sun/star/uno/Reference.hxx>
16
17#include <test/testdllapi.hxx>
18
19namespace apitest
20{
22{
23public:
24 virtual css::uno::Reference<css::uno::XInterface> init() = 0;
25
26 void setCellRange(css::table::CellRangeAddress aCellRange) { m_aCellRange = aCellRange; }
27 const css::table::CellRangeAddress& getCellRange() const { return m_aCellRange; }
28 void testGetReferredCells();
29
30protected:
32
33private:
34 css::table::CellRangeAddress m_aCellRange;
35};
36}
37
38#endif // INCLUDED_TEST_SHEET_XCELLRANGEREFERRER_HXX
39
40/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
void setCellRange(css::table::CellRangeAddress aCellRange)
virtual css::uno::Reference< css::uno::XInterface > init()=0
css::table::CellRangeAddress m_aCellRange
const css::table::CellRangeAddress & getCellRange() const
#define OOO_DLLPUBLIC_TEST
Definition: testdllapi.hxx:28