Version 5.2.6.1, tag libreoffice-5.2.6.1
[LibreOffice.git] / sc / inc / dpglobal.hxx
blobe6ca2c2ea83805e16917bee67b0b13d7b8f36c99
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/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #ifndef INCLUDED_SC_INC_DPGLOBAL_HXX
21 #define INCLUDED_SC_INC_DPGLOBAL_HXX
23 #include <o3tl/typed_flags_set.hxx>
25 #define PIVOT_MAXFUNC 11
27 enum class PivotFunc {
28 NONE = 0x0000,
29 Sum = 0x0001,
30 Count = 0x0002,
31 Average = 0x0004,
32 Max = 0x0008,
33 Min = 0x0010,
34 Product = 0x0020,
35 CountNum = 0x0040,
36 StdDev = 0x0080,
37 StdDevP = 0x0100,
38 StdVar = 0x0200,
39 StdVarP = 0x0400,
40 Auto = 0x1000
42 namespace o3tl {
43 template<> struct typed_flags<PivotFunc> : is_typed_flags<PivotFunc, 0x17ff> {};
46 struct ScDPValue
48 enum Type { Empty = 0, Value, String, Error };
50 double mfValue;
51 Type meType;
53 ScDPValue();
55 void Set( double fV, Type eT );
58 #endif
60 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */