summaryrefslogtreecommitdiffstats
path: root/sc/inc/stlalgorithm.hxx
diff options
context:
space:
mode:
authorKohei Yoshida <kyoshida@novell.com>2011-06-07 17:09:21 -0400
committerKohei Yoshida <kyoshida@novell.com>2011-06-07 17:09:21 -0400
commit448ec432f404469dbafb9b53c54bef9766310fec (patch)
treee3cc73ad8e87eac66c0251b7c392467ef028ab9f /sc/inc/stlalgorithm.hxx
parentsal_Bool to bool etc. (diff)
downloadcore-448ec432f404469dbafb9b53c54bef9766310fec.tar.gz
core-448ec432f404469dbafb9b53c54bef9766310fec.zip
Shared commonly used STL function objects & remove memory leak.
Diffstat (limited to 'sc/inc/stlalgorithm.hxx')
-rw-r--r--sc/inc/stlalgorithm.hxx42
1 files changed, 42 insertions, 0 deletions
diff --git a/sc/inc/stlalgorithm.hxx b/sc/inc/stlalgorithm.hxx
new file mode 100644
index 000000000000..3a0bff207a8c
--- /dev/null
+++ b/sc/inc/stlalgorithm.hxx
@@ -0,0 +1,42 @@
+/*
+ * 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. 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.
+ *
+ * The Initial Developer of the Original Code is
+ * Kohei Yoshida <kyoshida@novell.com> (Novell, Inc.)
+ * Portions created by the Initial Developer are Copyright (C) 2010 the
+ * Initial Developer. All Rights Reserved.
+ *
+ * Contributor(s):
+ *
+ * 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_STLALGORITHM_HXX__
+#define __SC_STLALGORITHM_HXX__
+
+#include <functional>
+
+template<typename T>
+struct ScDeleteObjectByPtr : public ::std::unary_function<T*, void>
+{
+ void operator() (T* p)
+ {
+ delete p;
+ }
+};
+
+#endif