]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/print_pointer.tpp
build system enhancements
[chaz/yoink] / src / stlplus / strings / print_pointer.tpp
index be96d91c6bd1e8e3cc775d85d1350d8d6048c6e5..ade9273c9d746da9141743ac00acde3cc30052b1 100644 (file)
@@ -1,34 +1,34 @@
-////////////////////////////////////////////////////////////////////////////////\r
-\r
-//   Author:    Andy Rushton\r
-//   Copyright: (c) Southampton University 1999-2004\r
-//              (c) Andy Rushton           2004-2009\r
-//   License:   BSD License, see ../docs/license.html\r
-\r
-////////////////////////////////////////////////////////////////////////////////\r
-#include <string>\r
-\r
-namespace stlplus\r
-{\r
-\r
-  template <typename T, typename S>\r
-  void print_pointer(std::ostream& device,\r
-                     const T* value,\r
-                     S print_fn,\r
-                     const std::string& null_string,\r
-                     const std::string& prefix,\r
-                     const std::string& suffix)\r
-  {\r
-    if (value)\r
-    {\r
-      device << prefix;\r
-      print_fn(device, *value);\r
-      device << suffix;\r
-    }\r
-    else\r
-    {\r
-      device << null_string;\r
-    }\r
-  }\r
-\r
-} // end namespace stlplus\r
+////////////////////////////////////////////////////////////////////////////////
+
+//   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.020292 seconds and 4 git commands to generate.