summaryrefslogtreecommitdiff
path: root/sc/inc/reordermap.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kohei.yoshida@collabora.com>2014-11-25 23:18:32 -0500
committerKohei Yoshida <kohei.yoshida@collabora.com>2014-11-25 23:20:23 -0500
commit57fbefe751978c33c205de454a8932145e5f438c (patch)
treea2570f91985d7b815b61d1bc93d83ed36e4b6b93 /sc/inc/reordermap.hxx
parent42c8178ce73756f85fa41473bb16f667f7f564e9 (diff)
remove boost/unordered_map.hpp include from types.hxx.
types.hxx is included by pretty much everyone inside sc. Let's not stick a boost header in there... Change-Id: Iaf2aa9e13d0e02437bcd9e71a0143432abfa0a7c
Diffstat (limited to 'sc/inc/reordermap.hxx')
-rw-r--r--sc/inc/reordermap.hxx39
1 files changed, 39 insertions, 0 deletions
diff --git a/sc/inc/reordermap.hxx b/sc/inc/reordermap.hxx
new file mode 100644
index 000000000000..832338423229
--- /dev/null
+++ b/sc/inc/reordermap.hxx
@@ -0,0 +1,39 @@
+/* -*- 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 INCLUDED_SC_REORDERMAP_HXX
+#define INCLUDED_SC_REORDERMAP_HXX
+
+#include <types.hxx>
+#include <boost/unordered_map.hpp>
+
+namespace sc {
+
+class ColRowReorderMapType
+{
+ typedef boost::unordered_map<SCCOLROW,SCCOLROW> DataType;
+ DataType maData;
+public:
+ typedef DataType::value_type value_type;
+ typedef DataType::const_iterator const_iterator;
+ typedef DataType::iterator iterator;
+
+ const_iterator end() const;
+
+ std::pair<iterator, bool>
+ insert( DataType::value_type const& val );
+
+ const_iterator find( DataType::key_type const& key ) const;
+};
+
+}
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */