]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/string_smart_ptr.tpp
remove some unused stlplus modules
[chaz/yoink] / src / stlplus / strings / string_smart_ptr.tpp
diff --git a/src/stlplus/strings/string_smart_ptr.tpp b/src/stlplus/strings/string_smart_ptr.tpp
deleted file mode 100644 (file)
index 994b363..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-
-//   Author:    Andy Rushton
-//   Copyright: (c) Southampton University 1999-2004
-//              (c) Andy Rushton           2004-2009
-//   License:   BSD License, see ../docs/license.html
-
-////////////////////////////////////////////////////////////////////////////////
-
-namespace stlplus
-{
-
-  template<typename T, typename S>
-  std::string smart_ptr_to_string(const smart_ptr<T>& value,
-                                  S to_string_fn,
-                                  const std::string& null_string,
-                                  const std::string& prefix,
-                                  const std::string& suffix)
-  {
-    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;
-  }
-
-  template<typename T, typename S>
-  std::string smart_ptr_clone_to_string(const smart_ptr_clone<T>& value,
-                                        S to_string_fn,
-                                        const std::string& null_string,
-                                        const std::string& prefix,
-                                        const std::string& suffix)
-  {
-    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;
-  }
-
-  template<typename T, typename S>
-  std::string smart_ptr_nocopy_to_string(const smart_ptr_nocopy<T>& value,
-                                         S to_string_fn,
-                                         const std::string& null_string,
-                                         const std::string& prefix,
-                                         const std::string& suffix)
-  {
-    return value ? (prefix + to_string_fn(*value) + suffix) : null_string;
-  }
-
-} // end namespace stlplus
-
This page took 0.017331 seconds and 4 git commands to generate.