]> Dogcows Code - chaz/yoink/blobdiff - src/stlplus/strings/print_smart_ptr.tpp
cleanup stlplus files
[chaz/yoink] / src / stlplus / strings / print_smart_ptr.tpp
index 51877c70963efbd02547c2925a62e47405651169..e57fc984aace34798bfdbf4075d4d8f9ea6efe23 100644 (file)
@@ -1,74 +1,74 @@
-////////////////////////////////////////////////////////////////////////////////\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
-\r
-namespace stlplus\r
-{\r
-\r
-  template<typename T, typename S>\r
-  void print_smart_ptr(std::ostream& device,\r
-                       const smart_ptr<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
-  template<typename T, typename S>\r
-  void print_smart_ptr_clone(std::ostream& device,\r
-                             const smart_ptr_clone<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
-  template<typename T, typename S>\r
-  void print_smart_ptr_nocopy(std::ostream& device,\r
-                              const smart_ptr_nocopy<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
-\r
+////////////////////////////////////////////////////////////////////////////////
+
+//   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_smart_ptr(std::ostream& device,
+                       const smart_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_smart_ptr_clone(std::ostream& device,
+                             const smart_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_smart_ptr_nocopy(std::ostream& device,
+                              const smart_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.022801 seconds and 4 git commands to generate.