]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/string_map.hpp
remove some unused stlplus modules
[chaz/yoink] / src / stlplus / strings / string_map.hpp
diff --git a/src/stlplus/strings/string_map.hpp b/src/stlplus/strings/string_map.hpp
deleted file mode 100644 (file)
index 64a6b22..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-#ifndef STLPLUS_STRING_MAP
-#define STLPLUS_STRING_MAP
-////////////////////////////////////////////////////////////////////////////////
-
-//   Author:    Andy Rushton
-//   Copyright: (c) Southampton University 1999-2004
-//              (c) Andy Rushton           2004-2009
-//   License:   BSD License, see ../docs/license.html
-
-//   Generate a string representation of a map/multimap
-
-////////////////////////////////////////////////////////////////////////////////
-#include "strings_fixes.hpp"
-#include <string>
-#include <map>
-
-namespace stlplus
-{
-
-  template<typename K, typename T, typename C, typename SK, typename ST>
-  std::string map_to_string(const std::map<K,T,C>& values,
-                            SK key_to_string_fn,
-                            ST value_to_string_fn,
-                            const std::string& pair_separator = ":",
-                            const std::string& separator = ",");
-
-  template<typename K, typename T, typename C, typename SK, typename ST>
-  std::string multimap_to_string(const std::multimap<K,T,C>& values,
-                                 SK key_to_string_fn,
-                                 ST value_to_string_fn,
-                                 const std::string& pair_separator = ":",
-                                 const std::string& separator = ",");
-
-} // end namespace stlplus
-
-#include "string_map.tpp"
-#endif
This page took 0.019771 seconds and 4 git commands to generate.