forked from amazingfate/loongoffice
Change-Id: I97d3391d6d9d59626bace2ce0cf2b5d9b45d9261 Reviewed-on: https://gerrit.libreoffice.org/36627 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Tomaž Vajngerl <quikee@gmail.com>
46 lines
796 B
Plaintext
46 lines
796 B
Plaintext
/* -*- 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 com_sun_star_chart2_data_PivotTableFieldEntry_idl
|
|
#define com_sun_star_chart2_data_PivotTableFieldEntry_idl
|
|
|
|
module com
|
|
{
|
|
module sun
|
|
{
|
|
module star
|
|
{
|
|
module chart2
|
|
{
|
|
module data
|
|
{
|
|
|
|
/**
|
|
*
|
|
* @since LibreOffice 5.4
|
|
*/
|
|
struct PivotTableFieldEntry
|
|
{
|
|
string Name;
|
|
|
|
long DimensionIndex;
|
|
|
|
long DimensionPositionIndex;
|
|
};
|
|
|
|
}; // data
|
|
}; // chart2
|
|
}; // com
|
|
}; // sun
|
|
}; // star
|
|
|
|
#endif
|
|
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|