1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 #define PIVOT_MAXFUNC 11
24 #define PIVOT_FUNC_NONE 0x0000
25 #define PIVOT_FUNC_SUM 0x0001
26 #define PIVOT_FUNC_COUNT 0x0002
27 #define PIVOT_FUNC_AVERAGE 0x0004
28 #define PIVOT_FUNC_MAX 0x0008
29 #define PIVOT_FUNC_MIN 0x0010
30 #define PIVOT_FUNC_PRODUCT 0x0020
31 #define PIVOT_FUNC_COUNT_NUM 0x0040
32 #define PIVOT_FUNC_STD_DEV 0x0080
33 #define PIVOT_FUNC_STD_DEVP 0x0100
34 #define PIVOT_FUNC_STD_VAR 0x0200
35 #define PIVOT_FUNC_STD_VARP 0x0400
36 #define PIVOT_FUNC_AUTO 0x1000
40 enum Type
{ Empty
= 0, Value
, String
, Error
};
47 void Set( double fV
, Type eT
);
52 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */