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_SC_INC_DPNUMGROUPINFO_HXX
11 #define INCLUDED_SC_INC_DPNUMGROUPINFO_HXX
12 
13 #include "scdllapi.h"
14 #include "calcmacros.hxx"
15 
16 struct ScDPNumGroupInfo
17 {
18     bool mbEnable:1;
19     bool mbDateValues:1;
20     bool mbAutoStart:1;
21     bool mbAutoEnd:1;
22     bool mbIntegerOnly:1;
23     double mfStart;
24     double mfEnd;
25     double mfStep;
26 
27     SC_DLLPUBLIC ScDPNumGroupInfo();
28 
29 #if DUMP_PIVOT_TABLE
30     void Dump() const;
31 #endif
32 };
33 
34 #endif
35 
36 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
37