summaryrefslogtreecommitdiffstats
path: root/sc/inc/calcmacros.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@gmail.com>2013-06-28 15:22:05 -0400
committerKohei Yoshida <kohei.yoshida@gmail.com>2013-07-01 10:29:18 -0400
commitfb604d067066249bda3a09b91743491dd63e8288 (patch)
treef6f4fca598b5be7d5dd4618fd84c1d1eacecb38c /sc/inc/calcmacros.hxx
parentEnsure that the group calculation path won't get called when it's disabled. (diff)
downloadcore-fb604d067066249bda3a09b91743491dd63e8288.tar.gz
core-fb604d067066249bda3a09b91743491dd63e8288.zip
Start moving all these DEBUG_FOO into calcmacros.hxx.
This header was formerly dpmacros.hxx, now renamed to calcmacros.hxx. Change-Id: I2ed768b7c5678f5216b1e93df2c0cede0c548be4
Diffstat (limited to 'sc/inc/calcmacros.hxx')
-rw-r--r--sc/inc/calcmacros.hxx24
1 files changed, 24 insertions, 0 deletions
diff --git a/sc/inc/calcmacros.hxx b/sc/inc/calcmacros.hxx
new file mode 100644
index 000000000000..03ca5909efce
--- /dev/null
+++ b/sc/inc/calcmacros.hxx
@@ -0,0 +1,24 @@
+/* -*- 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 SC_CALCMACROS_HXX
+#define SC_CALCMACROS_HXX
+
+#define DEBUG_COLUMN_STORAGE 0
+#define DEBUG_PIVOT_TABLE 0
+
+#if DEBUG_PIVOT_TABLE
+#include <iostream>
+#include <string>
+#include <cstdio>
+#endif
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */