]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/print_pointer.tpp
remove some unused stlplus modules
[chaz/yoink] / src / stlplus / strings / print_pointer.tpp
diff --git a/src/stlplus/strings/print_pointer.tpp b/src/stlplus/strings/print_pointer.tpp
deleted file mode 100644 (file)
index ade9273..0000000
+++ /dev/null
@@ -1,34 +0,0 @@
-////////////////////////////////////////////////////////////////////////////////
-
-//   Author:    Andy Rushton
-//   Copyright: (c) Southampton University 1999-2004
-//              (c) Andy Rushton           2004-2009
-//   License:   BSD License, see ../docs/license.html
-
-////////////////////////////////////////////////////////////////////////////////
-#include <string>
-
-namespace stlplus
-{
-
-  template <typename T, typename S>
-  void print_pointer(std::ostream& device,
-                     const 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.020605 seconds and 4 git commands to generate.