]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/print_simple_ptr.tpp
remove some unused stlplus modules
[chaz/yoink] / src / stlplus / strings / print_simple_ptr.tpp
diff --git a/src/stlplus/strings/print_simple_ptr.tpp b/src/stlplus/strings/print_simple_ptr.tpp
deleted file mode 100644 (file)
index e4171f2..0000000
+++ /dev/null
@@ -1,74 +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>
-  void print_simple_ptr(std::ostream& device,
-                       const simple_ptr<T>& value,
-                       S print_fn,
-                       const std::string& null_string,
-                       const std::string& prefix,
-                       const std::string& suffix)
-  {
-    if (value)
-    {
-      device << prefix;
-      print_fn(device, *value);
-      device << suffix;
-    }
-    else
-    {
-      device << null_string;
-    }
-  }
-
-  template<typename T, typename S>
-  void print_simple_ptr_clone(std::ostream& device,
-                             const simple_ptr_clone<T>& value,
-                             S print_fn,
-                             const std::string& null_string,
-                             const std::string& prefix,
-                             const std::string& suffix)
-  {
-    if (value)
-    {
-      device << prefix;
-      print_fn(device, *value);
-      device << suffix;
-    }
-    else
-    {
-      device << null_string;
-    }
-  }
-
-  template<typename T, typename S>
-  void print_simple_ptr_nocopy(std::ostream& device,
-                              const simple_ptr_nocopy<T>& value,
-                              S print_fn,
-                              const std::string& null_string,
-                              const std::string& prefix,
-                              const std::string& suffix)
-  {
-    if (value)
-    {
-      device << prefix;
-      print_fn(device, *value);
-      device << suffix;
-    }
-    else
-    {
-      device << null_string;
-    }
-  }
-
-} // end namespace stlplus
-
This page took 0.022736 seconds and 4 git commands to generate.