summaryrefslogtreecommitdiffstats
path: root/sc/inc/dptypes.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@suse.com>2012-02-03 14:23:19 -0500
committerKohei Yoshida <kohei.yoshida@suse.com>2012-02-04 00:25:52 -0500
commitbd3919c03dc1e5de2eb986321477bfe4a9b93cf4 (patch)
tree700951bc0fa27686793be52bfb210b1d965d410f /sc/inc/dptypes.hxx
parentMore on ScStrCollection/StrData elimination. (diff)
downloadcore-bd3919c03dc1e5de2eb986321477bfe4a9b93cf4.tar.gz
core-bd3919c03dc1e5de2eb986321477bfe4a9b93cf4.zip
No more ScStrCollection in pivot table code.
Diffstat (limited to 'sc/inc/dptypes.hxx')
-rw-r--r--sc/inc/dptypes.hxx39
1 files changed, 39 insertions, 0 deletions
diff --git a/sc/inc/dptypes.hxx b/sc/inc/dptypes.hxx
new file mode 100644
index 000000000000..da49c9ac0fb2
--- /dev/null
+++ b/sc/inc/dptypes.hxx
@@ -0,0 +1,39 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * Version: MPL 1.1 / GPLv3+ / LGPLv3+
+ *
+ * The contents of this file are subject to the Mozilla Public License Version
+ * 1.1 (the "License"); you may not use this file except in compliance with
+ * the License or as specified alternatively below. You may obtain a copy of
+ * the License at http://www.mozilla.org/MPL/
+ *
+ * Software distributed under the License is distributed on an "AS IS" basis,
+ * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
+ * for the specific language governing rights and limitations under the
+ * License.
+ *
+ * Major Contributor(s):
+ * Copyright (C) 2012 Kohei Yoshida <kohei.yoshida@suse.com>
+ *
+ * All Rights Reserved.
+ *
+ * For minor contributions see the git repository.
+ *
+ * Alternatively, the contents of this file may be used under the terms of
+ * either the GNU General Public License Version 3 or later (the "GPLv3+"), or
+ * the GNU Lesser General Public License Version 3 or later (the "LGPLv3+"),
+ * in which case the provisions of the GPLv3+ or the LGPLv3+ are applicable
+ * instead of those above.
+ */
+
+#ifndef __SC_DPTYPES_HXX__
+#define __SC_DPTYPES_HXX__
+
+#include "rtl/ustring.hxx"
+
+#include <boost/unordered_set.hpp>
+
+typedef boost::unordered_set<rtl::OUString, rtl::OUStringHash> ScDPUniqueStringSet;
+
+#endif
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */